[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0184-2.cs
1 // CS0184: The given expression is never of the provided (`string') type
2 // Line: 7
3 // Compiler options: -warnaserror -warn:1
4
5 class A {
6         static void Main () { 
7                 System.Console.WriteLine (null is string);
8         }
9 }