blob: dbb8f34d84148a876c838acdca86cefdbaf33240 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 %s -emit-llvm -o - -std=c++0x -verify
2
3static_assert(true, "");
4
5void f() {
6 static_assert(true, "");
7}