2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0308-5.cs
blob41106dfd7f20af638a51e106b70cbfcbb6621eb2
1 // CS0308: The non-generic method `X.Foo()' cannot be used with the type arguments
2 // Line: 12
4 class X
6 public void Foo ()
10 void Test ()
12 Foo<int> ();