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
remove NotWorking
[mcs.git]
/
tests
/
gtest-441.cs
blob
a5e1904199d06cc35d34f49e6ada86b15f954ff9
1
using
System
.
Collections
.
Generic
;
2
3
namespace
Name
4
{
5
public class
Test
6
{
7
internal static
List
<
int
>
List
;
8
}
9
10
public class
Subclass
:
Test
11
{
12
private
List
<
int
>
list
;
13
14
public
List
<
int
>
List
15
{
16
get
{ return list; }
17
}
18
19
public static void
Main
(
string
[]
args
)
20
{
21
Subclass c
=
new
Subclass
();
22
}
23
}
24
}
25