cleol
[mcs.git] / errors / gcs0306.cs
blobb440453c992ddfa2e12e99cd7f05f419a383d1e9
1 // gcs0306.cs: The type `char*' may not be used as a type argument
2 // Line: 9
3 // Compiler options: -unsafe
5 class F<U> {}
6 unsafe class O {
7 F<char *> f;
8 static void Main () {}