https://d.puremagic.com/issues/show_bug.cgi?id=11975
Summary: DMD64 D Compiler v2.065-devel-3b37a57 crashes for
simple inheritance
Product: D
Version: unspecified
Platform: x86_64
OS/Version: Linux
Status: NEW
Severity: blocker
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Sumit Adhikari <[email protected]> 2014-01-22
22:04:36 PST ---
Following code leads to segmentation fault:
abstract class foo_base(T)
{
private T bro ;
public void zoo(T bro_) {
bro = bro_ ;
}
}
class foo(T) : foo_base!(T)
{
}
void main()
{
foo!double Foo ;
Foo.zoo(1.0);
}
--
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------