* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs1660.cs
1 // cs1660.cs: Cannot convert anonymous method block to type `object' because it is not a delegate type
2 // Line: 9
3
4 using System;
5
6 class X {
7         static void Main ()
8         {
9                 object o = delegate {};
10         }
11 }