blob: 7b7f14bf72a21406e4565859ce5f54131bcc361d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
// Line: 10
class A
{
delegate string Test (string t);
public static void Main ()
{
Test ("t");
}
}
|