blob: 1b7d658b1e54f709c532ed3c86a678afdafbddf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS1644: Feature `null coalescing operator' cannot be used because it is not part of the C# 1.0 language specification
// Line: 10
// Compiler options: -langversion:ISO-1
class C
{
string program;
internal string Program {
get { return program ?? string.Empty; }
}
}
|