http://d.puremagic.com/issues/show_bug.cgi?id=9894
--- Comment #2 from Nick Sabalausky <[email protected]> 2013-04-06 19:45:48 PDT --- Workaround: struct Foo(TArgs...) { void func(TArgs args) { this.workaround(args); } void func2()(TArgs args) {} } void workaround(Struct, TArgs...)(Struct s, TArgs args) { s.func2!()(args); } void main() { Foo!(int) f; f.func(5); } -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
