Files
clang-p2996/clang/test/CodeGenCXX/reference-in-block-args.cpp
Aaron Ballman d618f1c3b1 Remove rdar links; NFC
This removes links to rdar, which is an internal bug tracker that the
community doesn't have visibility into.

See further discussion at:
https://discourse.llvm.org/t/code-review-reminder-about-links-in-code-commit-messages/71847
2023-07-07 08:41:11 -04:00

29 lines
470 B
C++

// RUN: %clang_cc1 -fblocks %s -emit-llvm -o %t
extern "C" int printf(const char*, ...);
struct ST {
int filler;
int referrer;
};
void OUTER_BLOCK(void (^fixer)(ST& ref)) {
ST ref = {2, 100};
fixer(ref);
}
void INNER_BLOCK(int (^largeDo) ()) {
printf("%d\n", largeDo());
}
void scan() {
OUTER_BLOCK(^(ST &ref) {
INNER_BLOCK(^() { return ref.referrer + ref.filler; });
});
}
int main() {
scan();
}