blob: 7ec9f614ef8ee557a7d4394c4927701bf821f94b (
plain)
1
2
3
4
5
6
7
8
9
10
|
// REQUIRED_ARGS: -O -inline
//https://issues.dlang.org/show_bug.cgi?id=20143
real fun(int x) { return 0.0; }
double bug()
{
// value passed to fun is irrelevant
return 0.0 / fun(420);
}
|