xref: /llvm-project/clang/test/Interpreter/lambda.cpp (revision a4f84f1b2e92ea79b70b9961049a1af7d9e1f2fa)
1 // RUN: clang-repl "int x = 10;" "int y=7; err;" "int y = 10;"
2 // RUN: clang-repl "int i = 10;" 'extern "C" int printf(const char*,...);' \
3 // RUN:            'auto r1 = printf("i = %d\n", i);' | FileCheck --check-prefix=CHECK-DRIVER %s
4 // REQUIRES: host-supports-jit
5 // UNSUPPORTED: system-aix
6 // CHECK-DRIVER: i = 10
7 // RUN: cat %s | clang-repl | FileCheck %s
8 // RUN: cat %s | clang-repl -Xcc -O2 | FileCheck %s
9 extern "C" int printf(const char *, ...);
10 
11 auto l1 = []() { printf("ONE\n"); return 42; };
12 auto l2 = []() { printf("TWO\n"); return 17; };
13 
14 auto r1 = l1();
15 // CHECK: ONE
16 auto r2 = l2();
17 // CHECK: TWO
18 auto r3 = l2();
19 // CHECK: TWO
20 
21 %quit
22