blob: baa4196bf39a33714399876b2b9c982d438d372b [file] [log] [blame]
// { dg-do assemble }
// bool test case
void foo(int i) {
foo (true);
}
struct C {
void foo(int i) {
foo(true);
}
void bar(bool b) {
bar(0);
}
};