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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0264-2.cs
blob
e1f791621e9d685846960496dcc3ad567cbc38c3
1
// CS0264: Partial declarations of `A<T,O>' must have the same type parameter names in the same order
2
// Line: 8
3
4
partial class
A
<
T
,
bool
>
5
{
6
}
7
8
partial class
A
<
T
,
O
>
9
{
10
}