URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [error30.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// 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" }
}
Go to most recent revision | Compare with Previous | Blame | View Log