mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
7 lines
124 B
C++
7 lines
124 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o - -std=c++0x -verify
|
|
|
|
static_assert(true, "");
|
|
|
|
void f() {
|
|
static_assert(true, "");
|
|
}
|