blob: 9e9b33c101fcd2aa418342dcb0551d9fa037946f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1978: An expression of type `void' cannot be used as an argument of dynamic operation
// Line: 9
class C
{
public static void Main ()
{
dynamic d = null;
d (Main ());
}
}
|