*** empty log message ***
[chuck-blob.git] / v2 / test / p93.ck
blobdffc818813e48cfa2473368e32a018b3bb6505f7
1 // class with function definition outside of class decl. ( fail-correct )
3 class Obj { 
4         int x;
5         int y;
6         public void foo( int b);
7
9 void Obj::foo( int b ) { 
10         b => x;
13 <<<"success">>>;