1 // PR c++/95675
2 // { dg-do compile { target c++11 } }
3 
4 struct b {};
5 b operator|(b, b) { return {}; }
6 b e, f, g;
7 using h = decltype(e | f | g);
8