Home | History | Annotate | Download | only in SemaCXX
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 // expected-no-diagnostics
      3 
      4 void f(int (&array1)[2], int (&array2)[2]) {
      5   if (array1 == array2) { } // no warning
      6 }
      7