[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0306.cs
blobc45ab46c4df3fa50064cc7c3bb3715aee75e62c6
1 // CS0306: 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 () {}