summaryrefslogtreecommitdiff
path: root/Tests/CMakeOnly/CheckStructHasMember/cm_cshm.hxx
blob: f3e9326f06b8facd2d4920c7e00a1de1262df2d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _CSHM_DUMMY_HXX
#define _CSHM_DUMMY_HXX

namespace ns {

class non_existent_class;
class class_with_non_existent_members
{
};
class class_with_member
{
public:
  int foo;
};
}

#endif