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: 7f1714e7331beeb7818eb35ef3929032194b219f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0179.cs: member can not be declared extern and abstract
// Line:

class X {

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