| // Copyright 2024 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #include "base/compiler_specific.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| template <int A = 0, int B = 0> |
| UNSAFE_BUFFER_USAGE int uses_pointer_as_array(int* i) { |
| return UNSAFE_BUFFERS(i[1]); |
| TEST(UnsafeBuffers, Macro) { |
| // Should compile even with -Wunsafe-buffer-usage. |
| int x = UNSAFE_BUFFERS(uses_pointer_as_array(arr)); |
| // Should compile even with -Wunsafe-buffer-usage. |
| uses_pointer_as_array(arr); |
| uses_pointer_as_array(arr); |
| // Commas don't break things. This comma is not wrapped in `()` which verifies |
| // the macro handles the comma correctly. `()` would hide the comma from the |
| int y = UNSAFE_BUFFERS(uses_pointer_as_array<1, 1>(arr)); |