[Issue 8883] New: -H and non-object object handled incorrectly
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Oct 23 19:45:06 PDT 2012
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: nobody at puremagic.com
ReportedBy: ellery-newcomer at utulsa.edu
--- Comment #0 from Ellery Newcomer <ellery-newcomer at utulsa.edu> 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: -------
More information about the Digitalmars-d-bugs
mailing list