"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / tests / test-248.cs
blobf3f093d4dfce552add1d28b64740344744d2613c
1 using System;
3 class T {
4 static Foo GetFoo () { return new Foo (); }
6 public static void Main ()
8 string s = GetFoo ().i.ToString ();
9 Console.WriteLine (s);
13 struct Foo { public int i; }