dmd/compiler/test/fail_compilation/nestedtempl0.d
2022-07-09 18:53:07 +02:00

35 lines
855 B
D

/*
TEST_OUTPUT:
---
fail_compilation/nestedtempl0.d(18): Error: class `nestedtempl0.K.D!(1, B!(a)).D` doesn't need a frame pointer, but super class `B` needs the frame pointer of `main`
fail_compilation/nestedtempl0.d(28): Error: template instance `nestedtempl0.K.D!(1, B!(a))` error instantiating
fail_compilation/nestedtempl0.d(18): Error: class `nestedtempl0.main.fun.D!(b, B!(a)).D` needs the frame pointer of `fun`, but super class `B` needs the frame pointer of `main`
fail_compilation/nestedtempl0.d(33): Error: template instance `nestedtempl0.main.fun.D!(b, B!(a))` error instantiating
---
*/
class K
{
class B(alias a)
{
}
class D(alias a, T) : T
{
}
}
void main()
{
int a;
auto k = new K;
auto d = k.new K.D!(1, K.B!a);
auto fun()
{
int b;
auto o = k.new K.D!(b, K.B!a);
}
}