Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0571-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6866d190649075fe99270de810749b7b8b094a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0571.cs: 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 ();
        }
}