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

class X
{
	static void Main ()
	{
		const int b = true ? 1 : b;
	}
}