summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1644-11.cs
blob: a1ca7f6b227abc06d41b7077b30a260facd5eaa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1644: Feature `nullable types' cannot be used because it is not part of the C# 1.0 language specification
// Line: 9
// Compiler options: -langversion:ISO-1

public class Test
{
	static void Main ()
	{
		bool? testbool;
	}
}