[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / tests / test-109.cs
1 using System;
2
3 class T {
4         public static int Main ()
5         {
6                 //
7                 // Just a test to compile the following:
8                 //
9                 string a = "Time is: " + DateTime.Now;
10
11                 return 0;
12         }
13 }