llvm-project/clang/test/Parser/cxx-reference.cpp

7 lines
92 B
C++
Raw Normal View History

// RUN: clang -fsyntax-only %s
extern char *bork;
char *& bar = bork;
void foo(int &a) {
}