forked from OSchip/llvm-project
7 lines
92 B
C++
7 lines
92 B
C++
|
// RUN: clang -fsyntax-only %s
|
||
|
extern char *bork;
|
||
|
char *& bar = bork;
|
||
|
|
||
|
void foo(int &a) {
|
||
|
}
|