codeowners update
[mono.git] / mcs / tests / test-anon-85.cs
1 // Compiler options: -unsafe
2
3 unsafe class X
4 {
5         delegate void D ();
6         
7         public static int Main ()
8         {
9                 byte* a = null;
10                 D d = delegate () {
11                         byte* x = &*a;
12                 };
13                 
14                 return 0;
15         }
16 }