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: 097ed8b18e9847c9e1275f8a4edb3d7438283d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1681: The global extern alias cannot be redefined
// Line: 3
extern alias global;
using System;

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