Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1681.cs
1 // CS1681: The global extern alias cannot be redefined
2 // Line: 3
3 extern alias global;
4 using System;
5
6 public class Test 
7 {
8         static void Main ()
9         {
10         }
11 }
12