blob: 96da2721b1b96430d7f81aa161af1a4a47effaa0 [file] [log] [blame]
/* https://issues.dlang.org/show_bug.cgi?id=23262
*/
struct T()
{
string[] tags;
this(string[] tags...)
{
this.tags = tags; // don't infer `return` attribute for `tags`
}
}
void test()
{
T!() t;
}