2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-681.cs
blobafde5efe7a3f079e71bb69293a641af6ac7a4001
1 // Compiler options: -unsafe
3 static class BugClass
5 unsafe delegate void Foo (void* dummy);
6 static unsafe void FooImplementation (void* dummy)
10 static unsafe Foo Bar = new Foo (FooImplementation);
13 class Bug
15 unsafe int*[] data = new int*[16];
17 public static void Main ()