mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
27 lines
435 B
D
27 lines
435 B
D
/*
|
|
EXTRA_SOURCES: extra-files/header3.d
|
|
REQUIRED_ARGS: -o- -unittest -H -Hf${RESULTS_DIR}/compilable/testheader3.di
|
|
PERMUTE_ARGS: -d -dw
|
|
OUTPUT_FILES: ${RESULTS_DIR}/compilable/testheader3.di
|
|
|
|
TEST_OUTPUT:
|
|
---
|
|
=== ${RESULTS_DIR}/compilable/testheader3.di
|
|
// D import file generated from 'compilable/extra-files/header3.d'
|
|
auto elseifchain()
|
|
{
|
|
bool a, b, c;
|
|
if (a)
|
|
{
|
|
}
|
|
else if (b)
|
|
{
|
|
}
|
|
else if (c)
|
|
{
|
|
}
|
|
}
|
|
---
|
|
*/
|
|
|
|
void main() {}
|