Index: llvm/tools/clang/test/debuginfo-tests/static-member.cpp
===================================================================
--- llvm/tools/clang/test/debuginfo-tests/static-member.cpp	(revision 0)
+++ llvm/tools/clang/test/debuginfo-tests/static-member.cpp	(revision 0)
@@ -0,0 +1,30 @@
+// RUN: %clangxx -O0 -g %s -c -o %t.o
+// RUN: %clangxx %t.o -o %t.out
+// RUN: %test_debuginfo %s %t.out
+
+// DEBUGGER: delete breakpoints
+// DEBUGGER: break main
+// DEBUGGER: r
+// DEBUGGER: n
+// DEBUGGER: p instance_C
+// CHECK: $1 = {static a = 4, static b = {{.*}}, static c = 15, d = {{.*}}}
+
+// PR14471, PR14734
+
+class C
+{
+public:
+  const static int a = 4;
+  static int b;
+  static int c;
+  int d;
+};
+
+int C::c = 15;
+const int C::a;
+
+int main()
+{
+    C instance_C;
+    return C::a;
+}
