1// RUN: %clang_cc1 %s -emit-llvm -o - -std=c++11 -verify
2
3static_assert(true, "");
4
5void f() {
6  static_assert(true, "");
7}
8