summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/const-init.cpp
blob: 427ba537299280e06c8ed77339134c55348d5a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 };

OpenPOWER on IntegriCloud