2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1644-8.cs
blob1b7d658b1e54f709c532ed3c86a678afdafbddf2
1 // CS1644: Feature `null coalescing operator' cannot be used because it is not part of the C# 1.0 language specification
2 // Line: 10
3 // Compiler options: -langversion:ISO-1
5 class C
7 string program;
9 internal string Program {
10 get { return program ?? string.Empty; }