summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0118-9.cs
blob: b273e65b72f56e72974250b7323e0f0dca714641 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0118: `System' is a `namespace' but a `type' was expected
// Line: 9

public class C
{
	public object Test (object a)
	{
		return (System)(a);
	}
}