blob: e9190de620620cc7758a09667f1ce031ee77c8d4 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=76
// Using a non-template struct as a template
// Compiling leads to "Assertion failure: 's->parent' on line 1694 in file
// 'template.c'"
/*
TEST_OUTPUT:
---
fail_compilation/fail104.d(26): Error: template instance `P!()` `P` is not a template declaration, it is a alias
fail_compilation/fail104.d(26): Error: mixin `fail104.C!(S).C.T!()` is not defined
fail_compilation/fail104.d(31): Error: template instance `fail104.C!(S)` error instantiating
---
*/
struct S
{
template T()
{
void x(int i)
{
}
}
}
class C(P)
{
mixin P!().T!();
}
int main(char[][] args)
{
auto c = new C!(S);
return 0;
}