Submitted by: Bill Wendling
Reviewed by:

C++ references testcase.

llvm-svn: 39497
This commit is contained in:
Bill Wendling 2007-05-27 10:16:12 +00:00
parent 3708c18559
commit 6811c0b5f3
1 changed files with 6 additions and 0 deletions

View File

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