dlr bug
[mcs.git] / tests / gtest-417.cs
blob289e7002dab949ace5c71eab52cb4147cc7f6a66
1 // Compiler options: -unsafe
3 public unsafe struct B {
4 private fixed int a[5];
7 public unsafe class C {
8 private B x;
10 public void Goo() {
11 fixed(B* y=&x) {
15 public static void Main () {}