Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
bool1.C
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
);
}
};