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
/
p93.ck
blob
dffc818813e48cfa2473368e32a018b3bb6505f7
1
// class with function definition outside of class decl. ( fail-correct )
2
3
class Obj {
4
int x;
5
int y;
6
public void foo( int b);
7
}
8
9
void Obj::foo( int b ) {
10
b => x;
11
}
12
13
<<<"success">>>;