annotate gcc/testsuite/g++.dg/cpp0x/variadic66.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // { dg-do compile { target c++11 } }
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 template<typename Result, typename Functor, typename... ArgTypes>
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
4 Result bind(Functor, ArgTypes...) { return Result(); }
111
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 void f()
kono
parents:
diff changeset
7 {
kono
parents:
diff changeset
8 bind<int>(17, 20, 22);
kono
parents:
diff changeset
9 }