mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
10 lines
143 B
C++
10 lines
143 B
C++
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
struct A {
|
|
A() { x = 10; }
|
|
int x;
|
|
};
|
|
|
|
const A x;
|
|
|
|
// CHECK: @_ZL1x = internal global
|