update readme (#21797)
[mono-project.git] / mcs / errors / cs8307.cs
blob6772f50aa94838842ab94ddf6fd55647566a27cd
1 // CS8307: The first operand of an `as' operator may not be a tuple literal without a natural type
2 // Line: 8
4 class X
6 public static void Main ()
8 var g = (1, Main) as object;