* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / fold-ice1.C
blob7e71cc9dd21d9d690d05e8764eb2f1ad0156eda3
1 // PR c++/67926
2 // { dg-options -std=c++17 }
4 template <bool ... T> bool FUR = (T && ...);
5 template <bool ... T> bool FUL = (... && T);
7 template <bool T1, bool ... T2> bool FBR = (T1 && ... && T2);
8 template <bool T1, bool ... T2> bool FBL = (T2 && ... && T1);