Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template <typename... bases>
- struct X : bases... {
- using bases::g...;
- };
- X<B, D> x; // OK: B::g and D::g introduced
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement