11 lines
153 B
C#
Raw Normal View History

// CS0118: `System' is a `namespace' but a `type' was expected
// Line: 9
public class C
{
public object Test (object a)
{
return (System)(a);
}
}