Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8307.cs
1 // CS8307: The first operand of an `as' operator may not be a tuple literal without a natural type
2 // Line: 8
3
4 class X
5 {
6         public static void Main ()
7         {
8                 var g = (1, Main) as object;
9         }
10 }