mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
30 lines
963 B
D
30 lines
963 B
D
/*
|
|
REQUIRED_ARGS: -preview=dip1000
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test20881.d(20): Error: returning scope variable `this` is not allowed in a `@safe` function
|
|
fail_compilation/test20881.d(27): Error: assigning address of variable `s` to `global` with longer lifetime is not allowed in a `@safe` function
|
|
fail_compilation/test20881.d(28): Error: assigning address of variable `s` to `global` with longer lifetime is not allowed in a `@safe` function
|
|
fail_compilation/test20881.d(29): Error: assigning address of variable `s` to `global` with longer lifetime is not allowed in a `@safe` function
|
|
---
|
|
*/
|
|
@safe:
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=20881
|
|
struct S
|
|
{
|
|
int* ptr;
|
|
|
|
auto borrowA() return /*scope inferred*/ { return ptr; }
|
|
int* borrowB() return { return ptr; }
|
|
int* borrowC() scope return { return ptr; }
|
|
}
|
|
|
|
void main()
|
|
{
|
|
static int* global;
|
|
S s;
|
|
global = s.borrowA;
|
|
global = s.borrowB;
|
|
global = s.borrowC;
|
|
}
|