summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0133-6.cs
blob: a523169cdbda359e062c842dc841f248055ad57b (plain)
1
2
3
4
5
6
7
8
9
10
// CS0133: The expression being assigned to `o' must be constant
// Line: 8

class X
{
	void Foo ()
	{
		const object o = "" ?? null;
	}
}