зеркало из https://github.com/microsoft/clang-1.git
9 строки
157 B
C
9 строки
157 B
C
|
// RUN: clang -fsyntax-only %s -verify
|
||
|
|
||
|
typedef struct { unsigned long bits[(((1) + (64) - 1) / (64))]; } cpumask_t;
|
||
|
cpumask_t x;
|
||
|
void foo() {
|
||
|
(void)x;
|
||
|
}
|
||
|
|