Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail19744.d
blob: abc4fea2e99bc0cacfe7e5367fab1e7d48125297 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail19744.d(8): Error: top-level function `test` has no `this` to which `return` can apply
---
*/
int
*
test
(
return
scope
int
*
n
)
return
{
return
n
;
}