[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / test-111.cs
1 class T {
2         static object get_obj() {
3                 return new object ();
4         }
5         public static int Main() {
6                 object o = get_obj ();
7                 if (o == "string")
8                         return 1;
9                 return 0;
10         }
11 }