13 lines
136 B
C++
13 lines
136 B
C++
|
|
class A {
|
|
public:
|
|
void fA() {}
|
|
};
|
|
|
|
typedef A tA;
|
|
|
|
void test_A(A *a) {}
|
|
void test_tA(tA *a) {}
|
|
|
|
tA *new_tA() { return new tA(); }
|