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

cs0180.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3ec87677dcafb2d77ddc2839ac3cb38dffae86d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0180.cs: `X.extern_method()' cannot be both extern and abstract
// Line:

class X {

	public extern abstract int extern_method ();
	
	public static void Main ()
		{
		}
}