blob: 2be758db350a4721ba8b646940675ce2bd1ced95 [file] [log] [blame]
// PR c++/48106
// { dg-do compile { target c++11 } }
enum class E : char
{
e
};
bool operator&(E e, char m)
{
return static_cast<int>(e) & m;
}