repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
errors
/
cs1503.cs
blob
800722ea6c17194c51f5513632acc0e18af8c8fe
1
// CS1503: Argument `#1' cannot convert `int' expression to type `bool'
2
// Line: 15
3
4
class
A
5
{
6
public static void
Foo
(
bool
test
)
7
{
8
}
9
}
10
11
class
B
12
{
13
public static void
Main
()
14
{
15
A
.
Foo
(
1
);
16
}
17
}