blob: 7b1f14f526faa5cc6d50ba49daa1b4df58e11f9d (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
REQUIRED_ARGS: -preview=dip1000
TEST_OUTPUT:
---
fail_compilation/test16589.d(26): Error: returning `&this.data` escapes a reference to parameter `this`
fail_compilation/test16589.d(26): perhaps annotate the parameter with `return`
fail_compilation/test16589.d(31): Error: returning `&this` escapes a reference to parameter `this`
fail_compilation/test16589.d(31): perhaps annotate the parameter with `return`
fail_compilation/test16589.d(37): Error: returning `&s.data` escapes a reference to parameter `s`
fail_compilation/test16589.d(37): perhaps annotate the parameter with `return`
fail_compilation/test16589.d(42): Error: returning `&s` escapes a reference to parameter `s`
fail_compilation/test16589.d(42): perhaps annotate the parameter with `return`
fail_compilation/test16589.d(47): Error: returning `&s.data` escapes a reference to local variable `s`
fail_compilation/test16589.d(52): Error: returning `& s` escapes a reference to local variable `s`
---
*/
// https://issues.dlang.org/show_bug.cgi?id=16589
struct S
{
int data;
@safe int* access1()
{
return &data;
}
@safe S* access2()
{
return &this;
}
}
@safe int* access3(ref S s)
{
return &s.data;
}
@safe S* access4(ref S s)
{
return &s;
}
@safe int* access5(S s)
{
return &s.data;
}
@safe S* access6(S s)
{
return &s;
}
class C
{
int data;
@safe int* access7()
{
return &data;
}
}
|