summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/cxx11/data/staticAssert.1.cpp
blob: b91abac7bf39ad9ca1d9039a7f01ad298043e46f (plain)
1
2
3
4
5
6
7
8
9
struct S {
    static_assert(sizeof(char) == 1, "Some message");

    void f() {
        static_assert(sizeof(int) == 4, "Another message");
    }
};

static_assert(sizeof(char) == 1, "One more");