summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0649-4.cs
blob: a88e2eb41a090ae19ce1727a951c295a11e206fb (plain)
1
2
3
4
5
6
7
8
// CS0649: Field `X.x' is never assigned to, and will always have its default value `0'
// Line: 4
// Compiler options: -warnaserror -warn:4

class X
{
	public readonly int x;
}