summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0283-4.cs
blob: 62fa370d7b0b1e194142e86da52abd30b30d8d13 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0283: The type `int?' cannot be declared const
// Line: 8

class C
{
	void Test ()
	{
		const int? ac = null;
	}
}