summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/fold-ice1.C
blob: 7e71cc9dd21d9d690d05e8764eb2f1ad0156eda3 (plain)
1
2
3
4
5
6
7
8
// PR c++/67926
// { dg-options -std=c++17 }

template <bool ... T> bool FUR = (T && ...);
template <bool ... T> bool FUL = (... && T);

template <bool T1, bool ... T2> bool FBR = (T1 && ... && T2);
template <bool T1, bool ... T2> bool FBL = (T2 && ... && T1);