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