[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs8133.cs
1 // CS8133: Cannot deconstruct dynamic objects
2 // Line: 9
3
4 class C
5 {
6         public static void Test (dynamic d)
7         {
8                 int x, y;
9                 (x, y) = d;
10         }
11 }