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
[configure] Add new target.
[mono-project.git]
/
mcs
/
tests
/
gtest-165-lib.cs
blob
599ad273863b1afa290287f06960fedd1afad286
1
// Compiler options: -t:library
2
3
public class
A
<
T
>
4
{
5
public int this
[
T arg
] {
6
get
{
7
return
1
;
8
}
9
}
10
11
public int this
[
string
arg
] {
12
get
{
13
return
2
;
14
}
15
}
16
}