Bug 13839 – Use new style for alias declarations in di files
Status
RESOLVED
Resolution
FIXED
Severity
enhancement
Priority
P1
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2014-12-09T07:45:00Z
Last change time
2015-02-18T03:41:00Z
Keywords
pull
Assigned to
nobody
Creator
k.hara.pg
Comments
Comment #0 by k.hara.pg — 2014-12-09T07:45:46Z
Currently following code:
---- test.d
alias T = int;
Making di file with:
dmd -o- -H test.d
Generates:
---- test.di
// D import file generated from 'test.d'
alias int T;
I think using the new style `alias T = int;` for the di file output would be better.