comparison clang/test/Interpreter/lambda.cpp @ 236:c4bab56944e8 llvm-original

LLVM 16
author kono
date Wed, 09 Nov 2022 17:45:10 +0900
parents
children 1f2b6ac9f198
comparison
equal deleted inserted replaced
232:70dce7da266c 236:c4bab56944e8
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