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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1502-2.cs
blob
e795ca16fb1ddedb874dda445eea2f8810253324
1
// cs1502-2.cs: The best overloaded method match for `System.Console.WriteLine(bool)' has some invalid arguments
2
// Line: 10
3
using
System
;
4
5
public class
MainClass
6
{
7
public static void
Main
()
8
{
9
test MyBug
=
new
test
();
10
Console
.
WriteLine
(
MyBug
.
mytest
());
11
}
12
}
13
14
public class
test
15
{
16
public void
mytest
()
17
{
18
Console
.
WriteLine
(
"test"
);
19
}
20
}
21
22