brintos

brintos / llvm-project-archived public Read only

0
0
Text · 343 B · 34de5b5 Raw
10 lines · cpp
1// RUN: %clang_cc1 -isystem %S/Inputs -verify %s2#include <array-bounds-system-header.h>3void test_system_header_macro() {4  BAD_MACRO_1; // no-warning5  char a[3]; // expected-note 2 {{declared here}}6  BAD_MACRO_2(a, 3); // expected-warning {{array index 3}}7  QUESTIONABLE_MACRO(a);8  NOP(a[3] = 5); // expected-warning {{array index 3}}9}10