Files
qt-creator/tests/auto/cplusplus/cxx11/data/staticAssert.1.cpp
Erik Verbruggen d679dc4d53 C++: Added tests for C++11 features.
Change-Id: Ifa0bc37916d3ac3a523580bec15a6685709e7810
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
2012-02-10 08:30:48 +01:00

9 lines
151 B
C++

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