repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs8142.cs
blob
3a9fd3570d8bb94ecabe3706ae164e4db9534fe2
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
}