Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail86.d
blob: 4f56e95ca6fad8a5fc89567197f792c7b78f841f [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/fail86.d(12): Error: alias `Foo` recursive alias declaration
---
*/
template
Foo
(
TYPE
)
{}
void
main
()
{
alias
Foo
!(
int
)
Foo
;
}