blob: aea12a8aef0379c3d5f74bd6870c63b981da3a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS1644: Feature `null propagating operator' cannot be used because it is not part of the C# 5.0 language specification
// Line: 10
// Compiler options: -langversion:5
class C
{
static void Main ()
{
string[] a = null;
var s = a?[0];
}
}
|