Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
eb32.C
blob: a70c8f9702f6d69a73b946fc3c6689fa49eaa603 [
file
] [
log
] [
blame
]
// { dg-do assemble }
class
A
{
public
:
void
malloc
(
unsigned
int
);
};
void
A
::
malloc
(
unsigned
int
)
{}
void
foo
()
{
A a
;
a
.
malloc
(
3
);
// <-- line 10
}