Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / variadic4.C
blob8e8f81493f2c9cc07cfac57656eef23dbff6e509
1 // { dg-options "-fabi-version=0" }
2 // { dg-do compile { target c++11 } }
3 template<typename... Args>
4 class tuple {};
6 void f_none(tuple<>) {}
7 void f_one(tuple<int>) {}
8 void f_two(tuple<int, float>) {}
9 void f_nested(tuple<int, tuple<double, char>, float>) { }
12 // { dg-final { scan-assembler "_Z6f_none5tupleIJEE" } }
13 // { dg-final { scan-assembler "_Z5f_one5tupleIJiEE" } }
14 // { dg-final { scan-assembler "_Z5f_two5tupleIJifEE" } }
15 // { dg-final { scan-assembler "_Z8f_nested5tupleIJiS_IJdcEEfEE" } }