// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s -Wno-uninitialized
;
;
;
b;
extern B ;
const int& ri = 0; // expected-error {{reference to type 'const int' could not bind to an rvalue of type 'void'}}
int
;
PR6139 x = ; // expected-error{{non-const lvalue reference to type 'A[1]' cannot bind to an initializer list temporary}}
;
PR6139b y = ; // expected-error{{non-const lvalue reference to type 'A[1]' cannot bind to a temporary of type 'A'}}