mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
the outermost scope with a context frame from a function using a more nested context frame.
17 lines
301 B
D
17 lines
301 B
D
module nested21;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void main() {
|
|
int i = 42;
|
|
int foo() { return i; }
|
|
int bar() {
|
|
int j = 47;
|
|
int baz() { return j; }
|
|
return foo() + baz();
|
|
}
|
|
auto result = bar();
|
|
printf("%d\n", result);
|
|
assert(result == 42 + 47);
|
|
}
|