global-llvm-constant.cpp revision 31455256ae26cc7069111643ec4429ea564377da
1// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3struct A {
4  A() { x = 10; }
5  int x;
6};
7
8const A x;
9
10// CHECK: @_ZL1x = internal global
11