global-llvm-constant.cpp revision a5728872c7702ddd09537c95bc3cbd20e1f2fb09
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: @x = internal global
11