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: f4bf35b2a6649edc3463269c5b9aa68d6d70a00e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0179: `X.extern_method()' cannot declare a body because it is marked extern
// Line:

class X {

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