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

17 lines
212 B
D

interface ITest
{
int foo();
final void bar(int k)() { assert(foo() == k); }
}
class Test : ITest
{
override int foo() { return 12; }
}
void main()
{
auto test = new Test;
test.bar!12();
}