Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs8129.cs
blobbe6781b3b6bff8f762eb0c0869a73bd6d228ecfe
1 // CS8129:
2 // Line:
4 using System;
6 class C
8 static void Main ()
10 long x;
11 string y;
12 (x, y) = new C ();
15 public static void Deconstruct (out int a, out string b)
17 a = 1;
18 b = "hello";