]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.dg/cpp0x/variadic123.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic123.C
CommitLineData
c26b89b7
JM
1// PR c++/52824
2// { dg-do compile { target c++11 } }
3
4template<typename G, typename H>
5struct foo
6{};
7
8template<typename... G>
9struct bar : foo<G...>
10{};
11
12int main() {
13 bar<int, float> f;
14}
This page took 5.263185 seconds and 5 git commands to generate.