1a03dc8c9SPavel Labath #include "onetwo.h"
2a03dc8c9SPavel Labath 
3a03dc8c9SPavel Labath Two::~Two() = default;
4b3b95287SPavel Labath member::Two::~Two() = default;
5b65d4b23SPavel Labath array::Two::~Two() = default;
6*1956cf10SPavel Labath 
Two(int member)7*1956cf10SPavel Labath result::Two::Two(int member) : member(member) {}
8*1956cf10SPavel Labath result::Two::~Two() = default;
one() const9*1956cf10SPavel Labath result::One result::Two::one() const { return One(member - 100); }
10