1 // RUN: cat %s | clang-repl -Xcc -Xclang -Xcc -load -Xcc -Xclang \
2 // RUN: -Xcc %llvmshlibdir/PrintFunctionNames%pluginext -Xcc -Xclang\
3 // RUN: -Xcc -add-plugin -Xcc -Xclang -Xcc print-fns 2>&1 | FileCheck %s
4 // REQUIRES: host-supports-jit, plugins, examples
7 extern "C" int printf(const char*,...);
8 auto r1
= printf("i = %d\n", i
);
12 // CHECK: top-level-decl: "i"
13 // CHECK-NEXT: top-level-decl: "r1"