a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
305 B
C#
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 ();
|
|
}
|
|
}
|
|
|