13 lines · plain
1# UNSUPPORTED: system-windows2# RUN: echo "int main() { return 0; }" | %clang_host -x c -o %t -3# RUN: %lldb -s %s %t | FileCheck %s4 5# Make sure that lldb doesn't crash when evaluating expressions with string literals6b main7run8expr "hello there"9expr printf("hello there")10 11# CHECK: (const char[12]) $0 = "hello there"12# CHECK: (int) $1 = 1113