Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag8825.d
blob: 68dcaa15e596962057fd628cdddbcc08962da2e2 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/diag8825.d(13): Error: undefined identifier `foo`
---
*/
template
t
(
alias
a
){
alias
int
t
;
}
void
main
(){
t
!(
foo
// line 13
)
i
;
// line 19
return
;
}