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

cs1681.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 563ccbf138416cc100275f84681d13cc3369ba09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1681.cs: You cannot redefine the global extern alias
// Line: 3
extern alias global;
using System;

public class Test 
{
	static void Main ()
	{
	}
}