mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-30 19:06:04 +00:00
7 lines
161 B
C++
7 lines
161 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
void f(int (&array1)[2], int (&array2)[2]) {
|
|
if (array1 == array2) { } // no warning
|
|
}
|