dlr bug
[mcs.git] / tests / test-456.cs
blob7d2a243a968a3380b49389f4894073933f9d71c2
1 // Compiler options: -unsafe
3 struct Foo {
4 public float f;
5 public void foo ()
7 unsafe {
8 fixed (float *pf2 = &f) {
14 class Test {
15 static void Main ()
17 Foo x = new Foo ();
18 x.foo ();