mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
308 B
D
15 lines
308 B
D
/*
|
|
REQUIRED_ARGS: -preview=dip1000
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test23022.d(14): Error: returning `p` escapes a reference to variadic parameter `p`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23022
|
|
// Typesafe variadic parameter should not infer return
|
|
|
|
auto ir(string[] p...)
|
|
{
|
|
return p;
|
|
}
|