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: [email protected]
Reporter: [email protected]
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;
}
}
```
--