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
/
cs0654.cs
blob
23cdaa8348db4c97a96ebe153dac31ecd897cc1a
1
// cs0654: Method `Test.foo()' is referenced without parentheses
2
// Line: 9
3
// Compiler options: -langversion:ISO-1
4
5
class
Test
{
6
static int
foo
()
{ return 0; }
7
static void
Main
()
8
{
9
int
i
=
foo
;
10
}
11
}