blob: 5f82e98bca52dbb0b68a17ba6752b96c5f683abc [file] [log] [blame]
class A {
public:
void fA() {}
};
typedef A tA;
void test_A(A *a) {}
void test_tA(tA *a) {}
tA *new_tA() { return new tA(); }