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
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
gtest-009.cs
blob
533b522694dbcbc9cb91d9195fe588fd85a3aa42
1
using
System
;
2
3
interface
I
4
{
5
void
Hello
();
6
}
7
8
class
Stack
<
T
>
9
where T
:
ICloneable
10
{
11
public object
Test
(
T t
)
12
{
13
return
t
.
Clone
();
14
}
15
}
16
17
class
Test
18
{
19
}
20
21
class
X
22
{
23
static void
Main
()
24
{
25
}
26
}