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
Remove debugging code from generated code
[mono-project.git]
/
mcs
/
errors
/
cs0149.cs
blob
f2cd3457a43a2532e620cecab305b18b7742c39d
1
// cs0149.cs: Method name expected
2
// Line: 8
3
4
delegate void
TestDelegate
();
5
6
public class
MainClass
{
7
public static void
Main
() {
8
TestDelegate delegateInstance
=
new
TestDelegate
(
0
);
9
}
10
}