summaryrefslogtreecommitdiff
path: root/Examples/test-suite/clientdata_prop_a.h
blob: 52c54066d0ff0f7f3e6ab493cd06fc830c99e8b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

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(); }