summaryrefslogtreecommitdiff
path: root/test/Sema/no-warn-unused-const-variables.c
blob: 73cfd8ea71b591c5be1986ed113c790f5aab5dfc (plain)
1
2
3
4
// RUN: %clang_cc1 -fsyntax-only -Wunused-const-variable -x c-header -ffreestanding -verify %s
// RUN: %clang_cc1 -fsyntax-only -Wunused-const-variable -x c++-header -ffreestanding -verify %s
// expected-no-diagnostics
static const int unused[] = { 2, 3, 5, 7, 11, 13 };