aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/static_assert8.C
blob: ea23afb857df250de410486e4627a3e551fc11c6 (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }

static_assert (1 == 0); // { dg-error "expected (string-literal|',') before" }

static_assert (1 == 0,); // { dg-error "expected string-literal before '\\)'" }

static_assert (1 == 0, "oops"); // { dg-error "static assertion failed" }