Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0430-2.cs
1 // CS0430: The extern alias `dontdefined' was not specified in -reference option
2 // Line: 4
3
4 using System;
5
6 namespace N
7 {
8         extern alias dontdefined;
9 }
10
11 public class Tester
12 {
13         static void Main ()
14         {
15         }
16 }