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-11-12 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0119.cs
blob
ff62015ddefcfaf49f32364a057e886946823860
1
// cs0119.cs: Expression denotes a `method group', where a `variable', `value' or `type' was expected
2
// Line: 14
3
4
using
System
;
5
6
public class
Test
7
{
8
public static void
E
()
9
{
10
}
11
12
public static void
Main
()
13
{
14
Console
.
WriteLine
(
E
.
x
);
15
}
16
}