mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
182 B
D
15 lines
182 B
D
// REQUIRED_ARGS: -w
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=8696
|
|
// incorrect dangling else with version():
|
|
version (all):
|
|
|
|
version (linux)
|
|
{
|
|
}
|
|
else version (OSX)
|
|
{
|
|
}
|
|
else
|
|
{
|
|
}
|