Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1001-3.cs
1 // CS1001: Unexpected symbol `)', expecting identifier
2 // Line: 8
3
4 class C
5 {
6         public static void Main ()
7         {
8                 object o = (int) => null;
9         }
10 }