2007-10-11 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs1660.cs
1 // CS1660: Cannot convert `anonymous method' 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 }