[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lldb / test / Shell / Expr / TestStringLiteralExpr.test
bloba33acb9ab0a668a8ca997211de3f1e72ad964457
1 # UNSUPPORTED: system-windows
2 # RUN: echo "int main() { return 0; }" | %clang_host -x c -o %t -
3 # RUN: %lldb -s %s %t | FileCheck %s
5 # Make sure that lldb doesn't crash when evaluating expressions with string literals
6 b main
7 run
8 expr "hello there"
9 expr printf("hello there")
11 # CHECK: (const char[12]) $0 = "hello there"
12 # CHECK: (int) $1 = 11