You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
250 B
16 lines
250 B
4 months ago
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
|
||
|
// expected-no-diagnostics
|
||
|
int g(int);
|
||
|
void f() {
|
||
|
int i;
|
||
|
int& r = i;
|
||
|
r = 1;
|
||
|
int* p = &r;
|
||
|
int &rr=r;
|
||
|
int (&rg)(int) = g;
|
||
|
rg(i);
|
||
|
int a[3];
|
||
|
int (&ra)[3] = a;
|
||
|
ra[1] = i;
|
||
|
}
|