]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test9399.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test9399.d
CommitLineData
b4c522fa
IB
1// REQUIRED_ARGS: -c -inline -Icompilable/imports
2// EXTRA_SOURCES: imports/test9399a.d
3
4import imports.test9399a;
5void fun(int a) {
6 void nested() {
7 a = 42;
8 }
9 call!nested();
10}