2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0571-3.cs
blobe3b3d566af3a7ca122fabb2e831db83e52c20db1
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
5 // Testcase for bug #59980
7 using Test;
9 public class EntryPoint {
10 public static int Main () {
11 C1 foo = new C2 ();
12 return foo.get_foo ();