[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git] / mcs / errors / cs0151-5.cs
blob3995a28675590669e3351cdb9bc70a91cb191dc6
1 // CS0151: A switch expression of type `X?' cannot be converted to an integral type, bool, char, string, enum or nullable type
2 // Line: 19
4 struct X
6 public static implicit operator int? (X x)
8 return 1;
11 static void Main ()
13 X? x = null;
14 switch (x) {
15 default:
16 break;