[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8132.cs
blob3855d31159c77a4b14520b09e2e5158a1e5016c2
1 // CS8132: Cannot deconstruct a tuple of `2' elements into `3' variables
2 // Line: 8
4 class C
6 public static void Main ()
8 var (t, u, v) = (1, 2);