[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0229-3.cs
1 // CS0229: Ambiguity between `TestLib.FOO' and `TestLib.FOO'
2 // Line: 9
3 // Compiler options: -r:CS0229-3-lib.dll
4
5 public class Test
6 {
7    public static void Main()
8    {
9       System.Console.WriteLine(TestLib.FOO);
10    }
11 }