10 lines
130 B
C++
10 lines
130 B
C++
#include <stdio.h>
|
|
#include "test_static.h"
|
|
|
|
void A::method1()
|
|
{
|
|
puts( "A::method1() which calls A::method2()" );
|
|
method2();
|
|
}
|
|
|