summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0414-2.cs
blob: 3b9b79a83219e97976baa02e5e3ca6e25721937b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0414: The private field `X.o' is assigned but its value is never used
// Line: 14
// Compiler options: -warnaserror -warn:3

partial class X
{
	public static void Main ()
	{
	}
}

partial class X
{
	int o = 4;
}