blob: 7d57947198d98b5d35a005594df5266f1fc7992f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0119: Expression denotes a `namespace', where a `variable', `value' or `method group' was expected
// Line: 8
class X
{
public static void Main ()
{
System.Collections.Generic ("");
}
}
|