blob: 52c54066d0ff0f7f3e6ab493cd06fc830c99e8b2 [file] [log] [blame]
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(); }