mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
19 lines
250 B
D
19 lines
250 B
D
/* RUN_OUTPUT:
|
|
---
|
|
inside switch: 1
|
|
---
|
|
*/
|
|
|
|
int get() { return 1; }
|
|
|
|
void test() {
|
|
import core.stdc.stdio : printf;
|
|
switch (auto x = get()) {
|
|
default:
|
|
printf("inside switch: %d\n", x);
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
test();
|
|
}
|