summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0430-2.cs
blob: 093b07f2db3031ff6df96d33b0bafc1452cf72fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0430: The extern alias `dontdefined' was not specified in -reference option
// Line: 4

using System;

namespace N
{
	extern alias dontdefined;
}

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