Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail7859.d
blob: ef8b770dd5a284beb89f39ec6b39665e4c1537c2 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail7859.d(9): Error: undefined identifier `NonExistent`
---
*/
template
A
(
alias
B
)
{}
mixin
template
C
(
alias
B
=
cast
(
NonExistent
)
null
)
{
alias
A
!
B D
;
}
mixin C
!();