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: 0f4ed5357dca48d3bed988cbd74464bb1307f625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 ();
        }
}