Fix warnings.
[mono.git] / mcs / errors / gcs0117.cs
1 class A<X>
2 {
3         //
4         // This is to test the lookup rules for SimpleNames:
5         // `X' is the type parameter, not the class.
6         //
7         public void Test (X x)
8         {
9                 x.Test ();
10         }
11 }
12
13 class X
14 {
15         public void Test ()
16         { }
17 }