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;
}