dmd/compiler/test/compilable/test9399.d
2022-07-09 18:53:07 +02:00

10 lines
196 B
D

// REQUIRED_ARGS: -c -inline -Icompilable/imports
// EXTRA_SOURCES: imports/test9399a.d
import imports.test9399a;
void fun(int a) {
void nested() {
a = 42;
}
call!nested();
}