Fix the clang-wpa example.
[clang.git] / test / CodeGenCXX / debug-info-member.cpp
blob5052a6cafb79dc53b19392573964385cf625cd47
1 // RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_ACCESS_public
2 class A {
3 public:
4 int x;
5 };
6 A a;