Sign in
gnu
/
gcc
/
4aef14b09557ce072f1269bd8a05fa2b1df0eda2
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.mike
/
net3.C
blob: 7c89facdd7abb99d4dc0a110fc44486db4b8869b [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Here is another program from the net.
class
BOOL
{
public
:
int
val
;
BOOL
(
int
i
=
0
);
operator
int
();
};
BOOL
&
foo
()
{
static
BOOL status
;
return
status
;
}