http://d.puremagic.com/issues/show_bug.cgi?id=9757

           Summary: Ddoc: documented unittest after ditto should work
           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 Kenji Hara <[email protected]> 2013-03-19 04:42:24 PDT ---
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();

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------

Reply via email to