Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
staticassertargs.d
blob: 9591fd809a90922dca53b81891c51392a044fe2e [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/staticassertargs.d(9): Error: static assert: abcxe3!!
---
*/
enum
e
=
"!!"
;
static
assert
(
false
,
"abc"
,
[
'x'
,
'e'
],
3
,
e
);