Home | History | Annotate | Download | only in dcl.init.list
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 void f0() {
      4   int &ir = { 17 }; // expected-error{{reference to type 'int' cannot bind to an initializer list}}
      5 }
      6