1 // Purpose:
2 // Ensure that the debug information for a global variable includes
3 // namespace information.
4
5 // REQUIRES: lldb
6 // UNSUPPORTED: system-windows
7
8 // RUN: %dexter --fail-lt 1.0 -w \
9 // RUN: --builder 'clang' --debugger 'lldb' \
10 // RUN: --cflags "-g -O0" -v -- %s
11
12 #include <stdio.h>
13
14 namespace monkey {
15 const int ape = 32;
16 }
17
main()18 int main() {
19 printf("hello %d\n", monkey::ape); // DexLabel('main')
20 return 0;
21 }
22
23 // DexExpectWatchValue('monkey::ape', 32, on_line='main')
24
25