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 extern "C" int printf(const char *, ...); 9 int i = 42; 10 auto r1 = printf("i = %d\n", i); 11 // CHECK: i = 42 12 13 struct S { float f = 1.0; S *m = nullptr;} s; 14 15 auto r2 = printf("S[f=%f, m=0x%llx]\n", s.f, reinterpret_cast<unsigned long long>(s.m)); 16 // CHECK-NEXT: S[f=1.000000, m=0x0] 17 18 inline int foo() { return 42; } 19 int r3 = foo(); 20 21 %quit 22