Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

16 lines
305 B
C#

// CS0571: `Test.C0.foo.get': cannot explicitly call operator or accessor
// Line: 12
// Compiler options: -r:CS0571-3-lib.dll
// Testcase for bug #59980
using Test;
public class EntryPoint {
public static int Main () {
C1 foo = new C2 ();
return foo.get_foo ();
}
}