Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / errors / cs8130.cs
1 // CS8130: Cannot infer the type of implicitly-typed deconstruction variable `yy'
2 // Line: 8
3
4 class X
5 {
6         public static void Main ()
7         {
8                 var (xx, yy) = (1, Main);
9         }
10 }