2004-06-09 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0411.cs
1 class Test<A>
2 {
3         public void Foo<V> (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, "Hello World");
13         }
14 }
15