comparison gcc/testsuite/g++.dg/template/ttp4.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // { dg-do compile }
2 // Origin: Ewgenij Gawrilow <gawrilow@math.tu-berlin.de>
3
4 // PR c++/6723
5 // ICE when default template argument contains instantiation of
6 // template template parameter.
7
8 template <typename A, typename B,
9 template <typename,typename> class Predicate,
10 bool _matches=Predicate<A,B>::answer>
11 struct helper { };