[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / tests / test-248.cs
1 using System;
2
3 class T {
4         static Foo GetFoo () { return new Foo (); }
5
6         public static void Main ()
7         {
8                 string s = GetFoo ().i.ToString ();
9                 Console.WriteLine (s);
10         }
11 }
12
13 struct Foo { public int i; }