1 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -Wover-aligned -verify %s
2 // expected-no-diagnostics
4 // This test verifies that we don't warn when the global operator new is
5 // overridden. That's why we can't merge this with the other test file.
7 void* operator new(unsigned long);
8 void* operator new[](unsigned long);
12 struct SeparateCacheLines
{
14 } __attribute__((aligned(256)));
16 SeparateCacheLines
<int> high_contention_data
[10];