Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs7023-2.cs
1 // CS7023: The second operand of `is' or `as' operator cannot be static type `X'
2 // Line: 8
3
4 static class X
5 {
6         public static void Main ()
7         {
8                 var v = null is X;
9         }
10 }