Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / pr78774.C
blobc77032ddbad4bf510e96e0a34f4840f8737ff0be
1 // PR c++/78774 - [6/7 Regression] ICE in constexpr string literals and
2 // templates
3 // { dg-do compile { target c++14 } }
5 template <int> struct ops {
6   template <int> struct A;
7   template <int *Ptr> using explode = typename A<*Ptr>::join;
8 };
9 template <typename Ts> typename ops<'\0'>::explode<Ts::join>::type a;