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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
gtest-342.cs
blob
f6edded8d4d0ba3872a29ca8bcfc79ba7ddbe6fa
1
class
Base
<
T
>
where T
:
Base
<
T
>
2
{
3
public static implicit operator
T
(
Base
<
T
>
t
)
4
{
5
return
(
T
)
t
;
6
}
7
}
8
9
class
TestMain
{
10
public static void
Main
(
string
[]
args
)
11
{
12
}
13
}
14