2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0244-2.cs
blobc6249bf213e38fffc6937da2041305b9e68bc966
1 // CS0244: The `is' operator cannot be applied to an operand of pointer type
2 // Line: 9
3 // Compiler options: -unsafe
5 class C
7 static unsafe void Main()
9 bool p = null is int*;