www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 8883] New: -H and non-object object handled incorrectly

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 puremagic.com
        ReportedBy: ellery-newcomer utulsa.edu



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: -------
Oct 23 2012