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
/
cs0102-18.cs
blob
98bace554efe3195ef1ea67d4e1447cd351a0ee6
1
// CS0102: The type `X<T>' already contains a definition for `T'
2
// Line: 11
3
4
class
X
<
T
> {
5
int
T
;
6
}
7
8
class
W
{
9
static void
Main
() {}
10
}