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

cs0179.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a83a1d726b4f50340189e628a1330732c952dc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0179.cs: `X.extern_method()' cannot declare a body because it is marked extern
// Line:

class X {

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