Files
qt-creator/tests/auto/cplusplus/cxx11/data/staticAssert.1.cpp

9 lines
151 B
C++
Raw Normal View History

struct S {
static_assert(sizeof(char) == 1, "Some message");
void f() {
static_assert(sizeof(int) == 4, "Another message");
}
};