1// RUN: %clang_cc1 -S -emit-llvm -g  %s -o - | grep DW_TAG_variable
2
3static const unsigned int ro = 201;
4void bar(int);
5void foo() { bar(ro); }
6