summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1681.cs
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 ()
	{
	}
}