repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs1503.cs
blob
c006bcd14283b5e008679c7f71e977d3516bc438
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
}