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
/
cs0571-3.cs
blob
0f4ed5357dca48d3bed988cbd74464bb1307f625
1
// CS0571: `Test.C0.foo.get': cannot explicitly call operator or accessor
2
// Line: 12
3
// Compiler options: -r:CS0571-3-lib.dll
4
5
// Testcase for bug #59980
6
7
using
Test
;
8
9
public class
EntryPoint
{
10
public static int
Main
() {
11
C1 foo
=
new
C2
();
12
return
foo
.
get_foo
();
13
}
14
}
15