aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/cast.c
blob: 14bfe138f308ea61fad583e1825b143d6121673c (plain)
1
2
3
4
5
6
7
8
// RUN: clang -fsyntax-only %s -verify

typedef struct { unsigned long bits[(((1) + (64) - 1) / (64))]; } cpumask_t;
cpumask_t x;
void foo() {
  (void)x;
}