[mini] Always emit safepoints, except WASM
[mono-project.git] / mcs / errors / cs1644-41.cs
blob0891786c3e8d6d63191895cb2d7c56474b026f42
1 // CS1644: Feature `null propagating operator' cannot be used because it is not part of the C# 5.0 language specification
2 // Line: 10
3 // Compiler options: -langversion:5
5 class C
7 static void Main ()
9 object o = null;
10 string s = o?.ToString ();