blob: 4c431436d2f79120a1395f4d2dc22221fd0b3c89 (
plain)
1
2
3
4
5
6
7
8
9
|
// CS1644: Feature `nullable types' cannot be used because it is not part of the C# 1.0 language specification
// Line: 7
// Compiler options: -langversion:ISO-1
class Test
{
int? i;
static void Main () {}
}
|