mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 19:59:18 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D4210 --HG-- extra : moz-landing-system : lando
11 lines
142 B
C++
11 lines
142 B
C++
struct B {
|
|
B() {}
|
|
B(const B&) {}
|
|
B(B &&) {}
|
|
};
|
|
|
|
struct D : B {
|
|
D() : B() {}
|
|
D(const D &RHS) : B(RHS) {}
|
|
D(D &&RHS) : B(RHS) {}
|
|
};
|