[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0023-30.cs
blobfc19cc24e3e9be014330a809ca5464c9491b59d9
1 // CS0023: The `is' operator cannot be applied to operand of type `default'
2 // Line: 9
3 // Compiler options: -langversion:latest
5 class C
7 static void Main ()
9 bool d = default is C;