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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0118-16.cs
blob
7b4d857a1969dffa1a668a38e61ca855e1f31573
1
// CS0118: `X.Foo' is a `property' but a `method group' was expected
2
// Line: 12
3
4
class
X
5
{
6
static int
Foo
{
7
get
{ return 1; }
8
}
9
10
static void
Main
()
11
{
12
Foo
(
1
);
13
}
14
}