Home | History | Annotate | Download | only in dcl.init.ref
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 int& r1;	// expected-error{{declaration of reference variable 'r1' requires an initializer}}
      3 extern int& r2;
      4