[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8133.cs
blob0c7812590b51ac048b4d399ccb49dc5266f82d63
1 // CS8133: Cannot deconstruct dynamic objects
2 // Line: 9
4 class C
6 public static void Test (dynamic d)
8 int x, y;
9 (x, y) = d;