bolt/deps/llvm-18.1.8/lldb/test/API/commands/expression/dollar-in-variable/main.c
2025-02-14 19:21:04 +01:00

17 lines
407 B
C

// Make sure we correctly handle $ in variable names.
int main() {
// Some variables that might conflict with our variables below.
int __lldb_expr_result = 2;
int $$foo = 1;
int R0 = 2;
// Some variables with dollar signs that should work (and shadow
// any built-in LLDB variables).
int $__lldb_expr_result = 11;
int $foo = 12;
int $R0 = 13;
int $0 = 14;
return 0; // break here
}