YouCompleteMe/cpp/llvm/tools/clang/test/Sema/static-assert.c
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

12 lines
465 B
C

// RUN: %clang_cc1 -std=c1x -fsyntax-only -verify %s
_Static_assert("foo", "string is nonzero"); // expected-error {{static_assert expression is not an integral constant expression}}
_Static_assert(1, "1 is nonzero");
_Static_assert(0, "0 is nonzero"); // expected-error {{static_assert failed "0 is nonzero"}}
void foo(void) {
_Static_assert(1, "1 is nonzero");
_Static_assert(0, "0 is nonzero"); // expected-error {{static_assert failed "0 is nonzero"}}
}