summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0133-7.cs
blob: 10d82d9fe5e0e77b6e9b932c5db7fce787e1c280 (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 ?? "";
	}
}