http://d.puremagic.com/issues/show_bug.cgi?id=8883
Summary: -H and non-object object handled incorrectly
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Ellery Newcomer <[email protected]> 2012-10-23
19:45:04 PDT ---
$ cat a/object.d
module a.object;
int objectystuff = 1;
$ cat a/other.d
module a.other;
import a.object;
public import a.object;
dmd -Hdd a/*.d -c -o-
cat d/object.di
// D import file generated from 'a/object.d'
module a.object;
int objectystuff = 1;
cat d/other.di
// D import file generated from 'a/other.d'
module a.other;
public /// <------ where'd my imports
go?
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------