1// RUN: %clang_cc1 -fsyntax-only -verify %s 2 3void f(int (&array1)[2], int (&array2)[2]) { 4 if (array1 == array2) { } // no warning 5} 6