mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
250 B
D
16 lines
250 B
D
/**
|
|
Test language editions (currently experimental)
|
|
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/editions.d(15): Error: scope parameter `x` may not be returned
|
|
---
|
|
*/
|
|
@__edition_latest_do_not_use
|
|
module editions;
|
|
|
|
@safe:
|
|
int* f(scope int* x)
|
|
{
|
|
return x;
|
|
}
|