digitalmars.D.bugs - [Issue 14360] New: DMD should compile SDC test0156.d
- via Digitalmars-d-bugs (34/35) Mar 28 2015 https://issues.dlang.org/show_bug.cgi?id=14360
https://issues.dlang.org/show_bug.cgi?id=14360 Issue ID: 14360 Summary: DMD should compile SDC test0156.d Product: D Version: unspecified Hardware: x86 OS: Mac OS X Status: NEW Severity: enhancement Priority: P1 Component: DMD Assignee: nobody puremagic.com Reporter: shammah.chancellor gmail.com ```rdmd test0156.dtest0156.d(19): Error: function expected before (), not foo() of type int ``` ```test0156.d //T compiles:yes //T has-passed:yes //T retval:36 // Closure chaining int main() { int a = 11; auto foo() { int b = 25; auto bar() { return a + b; } return bar; } return foo()(); } ``` --
Mar 28 2015