dlr bug
[mcs.git] / tests / test-248.cs
blob9b2e3057b5820bc8cb42a0bf7f439b87c8f5e43f
1 using System;
3 class T {
4 static Foo GetFoo () { return new Foo (); }
6 static void Main ()
8 string s = GetFoo ().i.ToString ();
9 Console.WriteLine (s);
13 struct Foo { public int i; }