Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice19887.d
blob: a323d0858bc2f2557a01724bda3824f3cb7e3e53 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/ice19887.d(9): Error: initializer must be an expression, not `(void)`
---
*/
module
ice19887
;
void
func
(
AliasSeq
!(
int
)
params
=
AliasSeq
!(
void
))
{}
template
AliasSeq
(
TList
...)
{
alias
AliasSeq
=
TList
;
}