* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / tests / test-466.cs
1 // Compiler options: -unsafe
2
3 public unsafe struct B {
4         private fixed int a[5];
5 }
6
7 public unsafe class C {
8         private B x;
9
10         public void Goo() {
11                 fixed(B* y=&x) {
12                 }
13         } 
14
15         public static void Main () {}
16 }