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-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0119-2.cs
blob
127aa1d408b70b960bc88f4adc95857f6a311266
1
// cs0119-2.cs: Expression denotes a `method group', where a `variable', `value' or `type' was expected
2
// Line: 9
3
4
public class
App
{
5
6
public static void
Main
() {}
7
8
SomeEnum
SomeEnum
() {
9
return
SomeEnum
.
First
;
10
}
11
12
}
13
14
enum
SomeEnum { First, Second }
;