← Back to index
|
Original Bugzilla link
Bug 9757 – Ddoc: documented unittest after ditto should work
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2013-03-19T04:42:00Z
Last change time
2013-03-19T20:32:52Z
Keywords
ddoc, pull
Assigned to
nobody
Creator
k.hara.pg
Comments
Comment #0
by k.hara.pg — 2013-03-19T04:42:24Z
This code: /// doc1 void foo() {} /// ditto void bar() {} /// ditto void baz() {} /// unittest { foo(); bar(); } /// unittest { bar(); foo(); } Should output: void foo(); void bar(); void baz(); doc1 Examples: foo(); bar(); Examples: bar(); foo();
Comment #1
by k.hara.pg — 2013-03-19T04:56:55Z
https://github.com/D-Programming-Language/dmd/pull/1746
Comment #2
by github-bugzilla — 2013-03-19T20:32:09Z
Commit pushed to master at
https://github.com/D-Programming-Language/dmd
https://github.com/D-Programming-Language/dmd/commit/a85ad5474855e9aa618074cc970ff4fc755a31c7
fix Issue 9757 - Ddoc: documented unittest after ditto should work