Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0244-2.cs
1 // CS0244: The `is' operator cannot be applied to an operand of pointer type
2 // Line: 9
3 // Compiler options: -unsafe
4
5 class C
6 {
7     static unsafe void Main()
8     {
9         bool p = null is int*;
10     }
11 }