repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add test to confirm behavior of Control.SetVisibleCore, and remove some redundant...
[mcs.git]
/
tests
/
gtest-014.cs
blob
69b232d21fd2dbc042e0fc45492d9c740140ace5
1
public class
Stack
<
S
>
2
{
3
public
Stack
(
S s
)
4
{ }
5
6
public void
Push
(
S s
)
7
{ }
8
}
9
10
public class
X
11
{
12
static void
Main
()
13
{
14
Stack
<
int
>
s1
=
new
Stack
<
int
> (
3
);
15
s1
.
Push
(
4
);
16
17
Stack
<
string
>
s2
=
new
Stack
<
string
> (
"Hello"
);
18
s2
.
Push
(
"Test"
);
19
}
20
}