Sign in
gnu
/
gcc
/
refs/tags/basepoints/gcc-13
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice9406.d
blob: c1807a0f542c2520ed5b5163a5bbc9f8405eab57 [
file
] [
log
] [
blame
]
/*
TEST_OUTPUT:
---
fail_compilation/ice9406.d(22): Error: `s1.mixin Mixin!() t1;
` has no effect
---
*/
mixin
template
Mixin
()
{
}
struct
S
{
template
t1
()
{
mixin
Mixin
t1
;
}
}
void
main
()
{
S s1
;
s1
.
t1
!();
}