repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
v2
/
test
/
p11.ck
blob
aaab76209be6ea7ec03f2ee29f8636bea1b9571b
1
// class with a declared, undefined class as member ( fail-correct )
2
3
class ListValue;
4
5
class ListItem
6
{
7
public void foo() { }
8
ListValue myval;
9
int index;
10
}
11
12
class ListValue {
13
int value;
14
}
15
16
ListItem root;
17
18
<<<"success">>>;