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-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0149.cs
blob
8ff999d2f9e610861c09d5fe168d1a5111a22aaa
1
// CS0149: Method name expected
2
// Line: 8
3
4
delegate void
TestDelegate
();
5
6
public class
MainClass
7
{
8
public static void
Main
()
9
{
10
TestDelegate delegateInstance
=
new
TestDelegate
();
11
}
12
}