summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0118-14.cs
blob: bfff892589386af6e9b3160c27e1787851a944f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0118: `A' is a `type' but a `variable' was expected
// Line: 12

class A
{
}

class B
{
	public B ()
	{
		A = 2;
	}
}