mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
196 B
D
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();
|
|
}
|