Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-69.cs
1 using System;
2 using System.Runtime.CompilerServices;
3
4 public class Blah {
5
6         [MethodImpl (MethodImplOptions.InternalCall)]
7         private extern void Start_internal(IntPtr handle);
8
9         public static int Main ()
10         {
11                 return 0;
12         }
13 }