https://issues.dlang.org/show_bug.cgi?id=11657
--- Comment #2 from [email protected] --- Really? variadic arguments are not allowed to escape? Then there is a glaring hole: class C { int[] a; this(int[] data...) { a = data; // compiles } } This case needs to be prohibited, otherwise we end up with bug #5212. --
