error messages review
[mono.git] / mcs / errors / cs0571-3.cs
1 // cs0571-3.cs: `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