http://d.puremagic.com/issues/show_bug.cgi?id=8034
Summary: Template mixins creates ambiguous virtual function
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Keywords: accepts-invalid
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Denis <[email protected]> 2012-05-04 17:17:42 MSD
---
This compiles but shouldn't:
---
mixin template T() {
void f() { }
}
class A {
mixin T;
mixin T;
}
class B : A {
override void f() { }
}
---
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------