Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1660-2.cs
1 // CS1660: Cannot convert `anonymous method' to non-delegate type `int'
2 // Line: 9
3
4 using System;
5
6 class X {
7         static void Main ()
8         {
9                 int o = delegate {};
10         }
11 }