summaryrefslogtreecommitdiffstats
path: root/test/input/Class-implicit-member-access-mutable.cxx
blob: 2b619a1179d1fd132fc5cba51118090e3c2c3bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class base
{
protected:
  base();
  ~base();

private:
  base(base const&);
  base& operator=(base const&);
  mutable int data;
};
class start : public base
{
};