blob: a5ac98b91361a982e5f51255e701e3761397e616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* REQUIRED_ARGS: -preview=dip1000
TEST_OUTPUT:
---
fail_compilation/test20569.d(19): Error: cannot take address of `scope` local `s1` in `@safe` function `main`
fail_compilation/test20569.d(23): Error: cannot take address of `scope` local `s2` in `@safe` function `main`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=20569
struct S
{
int* pointer;
}
void main() @safe
{
scope S s1;
scope int** p1 = &s1.pointer;
int x;
S s2 = S(&x);
auto p2 = &s2.pointer;
}
|