brintos

brintos / llvm-project-archived public Read only

0
0
Text · 151 B · ff82f6d Raw
9 lines · cpp
1// RUN: %clang_cc1 %s -emit-llvm -o - -std=c++11 -verify2// expected-no-diagnostics3 4static_assert(true, "");5 6void f() {7  static_assert(true, "");8}9