opnsense-src/test/CodeGenCXX/const-init.cpp

12 lines
137 B
C++
Raw Normal View History

2009-06-02 13:58:47 -04:00
// RUN: clang-cc -verify -emit-llvm -o %t %s
int a = 10;
int &ar = a;
void f();
void (&fr)() = f;
struct S { int& a; };
S s = { a };