2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs1976.cs
blobe03e2f36fc728bc56b6eb761d2eab4961e94e7d9
1 // CS1976: The method group `Main' cannot be used as an argument of dynamic operation. Consider using parentheses to invoke the method
2 // Line: 9
4 class C
6 public static void Main ()
8 dynamic d = null;
9 d (Main);