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
cosmetic
[mcs.git]
/
tests
/
gtest-094.cs
blob
8f1cdcef27746879e97af1fc6bda4df215438777
1
public class
LinkedList
<
T
>
2
{
3
protected class
Node
4
{ }
5
}
6
7
public class
HashedLinkedList
<
T
> :
LinkedList
<
T
>
8
{
9
Node node
;
10
}
11
12
class
X
13
{
14
static void
Main
()
15
{ }
16
}