зеркало из https://github.com/microsoft/clang-1.git
11 строки
307 B
C
11 строки
307 B
C
// RUN: clang -fsyntax-only -verify -pedantic %s
|
|
|
|
// The preprocessor shouldn't warn about extensions within macro bodies that
|
|
// aren't expanded.
|
|
#define __block __attribute__((__blocks__(byref)))
|
|
|
|
// This warning is entirely valid.
|
|
__block int x; // expected-warning{{extension used}}
|
|
|
|
void whatever() {}
|