New tests, update.
[mono.git] / mcs / errors / gcs0308-5.cs
1 // CS0308: The non-generic method `Foo' cannot be used with type arguments
2 // Line: 12
3
4 class X
5 {
6         public void Foo ()
7         {
8         }
9         
10         void Test ()
11         {
12                 Foo<int> ();
13         }
14 }