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

class X {

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