1 // REQUIRES: zlib
2 
3 // RUN: %clang %s -target x86_64-pc-linux -g -gsplit-dwarf -c -o %t \
4 // RUN:   -Wa,--compress-debug-sections=zlib-gnu
5 // RUN: %lldb %t -o "target var s a" -b | FileCheck %s
6 
7 // CHECK: (const short) s = 47
8 // CHECK: (const A) a = (a = 42)
9 
10 struct A {
11   long a = 42;
12 };
13 extern constexpr short s = 47;
14 extern constexpr A a{};
15