summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0134-4.cs
blob: 9f1bdef8046fa86a69fb94d20b0dbac0f84deb47 (plain)
1
2
3
4
5
6
7
// CS0134: A constant `T.i' of reference type `decimal[]' can only be initialized with null
// Line: 12

class T
{
	const decimal[] i = new decimal [] { 2m };
}