Remove trailing empty lines
[mono.git] / mcs / errors / gcs0411-2.cs
1 class Test<A>
2 {
3         public void Foo<V,W> (V v, V w)
4         { }
5 }
6
7 class X
8 {
9         static void Main ()
10         {
11                 Test<float> test = new Test<float> ();
12                 test.Foo (8, 9);
13         }
14 }
15