[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs7023.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 as X;
9         }
10 }