mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-14 11:53:13 +01:00
15 lines
224 B
D
15 lines
224 B
D
module scope_exit_foreach;
|
|
|
|
void bar(size_t);
|
|
|
|
long foo(ubyte[] arr) {
|
|
scope(exit) {
|
|
foreach (ref b; arr) {
|
|
bar(b);
|
|
}
|
|
}
|
|
if (arr.length == 3)
|
|
return 0;
|
|
return arr.length;
|
|
}
|