[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs1660.cs
1 // CS1660: Cannot convert `anonymous method' to non-delegate type `object'
2 // Line: 9
3
4 using System;
5
6 class X {
7         static void Main ()
8         {
9                 object o = delegate {};
10         }
11 }