for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0023-20.cs
blobffde8addb8eb57a9d6d4298de157db83bacf99a9
1 // CS0023: The `?' operator cannot be applied to operand of type `int'
2 // Line: 11
4 using System;
6 class C
8 static void Main()
10 int k = 0;
11 var r = k?.ToString ();