Commit 9b126a10 by Benjamin Kosnik

try 2

From-SVN: r21443
parent fb3ad9b3
// Build don't link:
//980610 bkoz
// example 2: ok
class bar;
class foo {
public:
int func(bar *);
foo(){}
~foo(){}
};
class bar {
int st;
public:
bar(){st=12;}
~bar(){}
friend int foo::func(bar *);
};
int foo::func(bar *obj) {
obj->st++;
return (obj->st);
}
void test02() {
foo obj_f;
bar obj_b;
obj_f.func( &obj_b);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment