[w32handle] Remove unused header includes
[mono-project.git] / mcs / tests / gtest-525.cs
blobb0c420f4c1a3e9be5e9e5e5ef25113c61676c9ed
1 using System;
3 class A
5 static void MA<T> (string s)
9 static void F ()
13 public class C
15 Func<int> MA;
16 int F;
18 void Foo ()
20 F ();
21 MA<int> ("");
24 public static void Main ()
26 new C ().Foo ();