www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 14354] New: SDC test0106.d compiles, but should not

https://issues.dlang.org/show_bug.cgi?id=14354

          Issue ID: 14354
           Summary: SDC test0106.d compiles, but should not
           Product: D
           Version: unspecified
          Hardware: x86
                OS: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P1
         Component: DMD
          Assignee: nobody puremagic.com
          Reporter: shammah.chancellor gmail.com

SDC errors:
```
 ../bin/sdc test0106.d
int foo(int i) { return i; } ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ test0106.d:13: error: Already defined ``` while DMD incorrectly compiles the source and runs. ```test0106.d //T compiles:no //T has-passed:yes int main() { return foo(); } int foo() { return 3; } static if(foo() == 3) { int foo(int i) { return i; } } ``` --
Mar 28 2015