mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
21 lines
311 B
D
21 lines
311 B
D
/*
|
|
REQUIRED_ARGS: -de
|
|
*/
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/retscope4.d(3007): Deprecation: slice of static array temporary returned by `func()` assigned to longer lived variable `a`
|
|
---
|
|
*/
|
|
|
|
#line 3000
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=12625
|
|
|
|
int[16] func();
|
|
|
|
void foo()
|
|
{
|
|
int[] a = func();
|
|
}
|