Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
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
;
}