[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[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