blob: 81ef6e6f9c9452531d110241bcc87d20053d24bd [file] [log] [blame]
// PR c++/95675
// { dg-do compile { target c++11 } }
struct b {};
b operator|(b, b) { return {}; }
b e, f, g;
using h = decltype(e | f | g);