[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs8142.cs
blob3a9fd3570d8bb94ecabe3706ae164e4db9534fe2
1 // CS8142: A partial method declaration and partial method implementation must both use the same tuple element names
2 // Line: 11
4 partial class X
6 partial void Foo ((int a, int b) arg);
9 partial class X
11 partial void Foo ((int c, int d) arg)