summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0023-24.cs
blob: ea8fa10c97433e763344901f4749262926a867be (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0023: The `?' operator cannot be applied to operand of type `int'
// Line: 9

public class C
{
	static void Main()
	{
		string s = null;
		var x = s?.Length?.ToString ();
	}
}