Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0308-5.cs
1 // CS0308: The non-generic method `X.Foo()' cannot be used with the 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 }