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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs0029-36.cs
blob
781bf1b1f1e648b2903ea4e02c2fb08ec6f17e88
1
// CS0029: Cannot implicitly convert type `void' to `object'
2
// Line: 10
3
4
using
System
;
5
6
class
TestClass
7
{
8
public static void
Main
()
9
{
10
Console
.
WriteLine
($
"
{ Main () }
"
);
11
}
12
}