Bump API snapshot submodule
[mono.git] / mcs / errors / cs8131.cs
1 // CS8131: Deconstruct assignment requires an expression with a type on the right-hand-side
2 // Line: 9
3
4 class C
5 {
6         public static void Main ()
7         {
8                 int x, y;
9                 (x, y) = null;
10         }
11 }