blob: 2df0e64075cfd246729ee39c9f1d3eff8aedc5c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// PR c++/35336
// { dg-do compile }
// { dg-bogus "not supported by" "" { target *-*-* } 0 }
struct A
{
int i : 2;
};
void foo (bool b)
{
A a;
(a.i || b) (); // { dg-error "cannot be used as" }
}
|