mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
40 lines
944 B
D
40 lines
944 B
D
/*
|
|
REQUIRED_ARGS: -preview=dip1000
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag23295.d(21): Error: assigning scope variable `x` to non-scope parameter `y` calling `foo` is not allowed in a `@safe` function
|
|
fail_compilation/diag23295.d(32): which is assigned to non-scope parameter `z`
|
|
fail_compilation/diag23295.d(34): which is not `scope` because of `f = & z`
|
|
fail_compilation/diag23295.d(24): Error: assigning scope variable `ex` to non-scope parameter `e` calling `thro` is not allowed in a `@safe` function
|
|
fail_compilation/diag23295.d(39): which is not `scope` because of `throw e`
|
|
---
|
|
*/
|
|
|
|
// explain why scope inference failed
|
|
// https://issues.dlang.org/show_bug.cgi?id=23295
|
|
|
|
@safe:
|
|
|
|
void main()
|
|
{
|
|
scope int* x;
|
|
foo(x, null);
|
|
|
|
scope Exception ex;
|
|
thro(ex);
|
|
}
|
|
|
|
auto foo(int* y, int** w)
|
|
{
|
|
fooImpl(y, null);
|
|
}
|
|
|
|
auto fooImpl(int* z, int** w)
|
|
{
|
|
auto f = &z;
|
|
}
|
|
|
|
auto thro(Exception e)
|
|
{
|
|
throw e;
|
|
}
|