Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / dcs1977.cs
bloba3350420f3c1bbd71ea9d6f5aa7d69b61ee2369c
1 // CS1977: An anonymous method or lambda expression cannot be used as an argument of dynamic operation. Consider using a cast
2 // Line: 9
4 class C
6 public static void Main ()
8 dynamic d = null;
9 d (delegate {});