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