Merge pull request #5198 from BrzVlad/fix-binprot-stats
[mono.git] / mcs / errors / cs8142.cs
1 // CS8142: A partial method declaration and partial method implementation must both use the same tuple element names
2 // Line: 11
3
4 partial class X
5 {
6         partial void Foo ((int a, int b) arg);
7 }
8
9 partial class X
10 {
11         partial void Foo ((int c, int d) arg)
12         {
13         }
14 }