repo.or.cz
/
mono-debugger.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git]
/
mono
/
dis
/
tests
/
test1.cs
blob
b28fe8b1eca55a783113a44ffb56c48691041c23
1
/* Bug #76671
2
Note: gmcs currently emits duplicate TypeSpecs, so this
3
case doesn't get exposed, so use csc compiled
4
assemblies till gmcs is fixed.
5
*/
6
7
class
X
<
T1
> {
8
public static void
Xfoo
() {
9
X
<
T1
>.
Xfoo
();
10
}
11
}
12
13
class
Y
<
T2
> {
14
public static void
Yfoo
() {
15
X
<
T2
>.
Xfoo
();
16
}
17
}
18
19
class
Test
{
20
static void
Main
()
21
{
22
}
23
}