[Issue 11133] ddoc: documented unittest outside of version scope

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11133 Iain Buclaw changed: What|Removed |Added Priority|P2 |P3 --

[Issue 11133] ddoc: documented unittest outside of version scope

2017-12-13 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11133 --- Comment #4 from Jonathan M Davis --- Related: https://issues.dlang.org/show_bug.cgi?id=18077 --

[Issue 11133] ddoc: documented unittest outside of version scope

2017-12-13 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11133 --- Comment #3 from Jonathan M Davis --- Here's an example that has the problem with static if: /// struct S(R) { /// Some docs static if(is(R == string)) alias S = R; else alias S = int; /// unittest {

[Issue 11133] ddoc: documented unittest outside of version scope

2017-12-13 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=11133 Jonathan M Davis changed: What|Removed |Added CC||issues.dl...@jmdavisprog.co

[Issue 11133] ddoc: documented unittest outside of version scope

2013-09-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=11133 --- Comment #1 from Martin Nowak 2013-09-27 20:00:32 PDT --- Ah I forgot to mention. The following case works. It seems like it's the else branch that break the unittest docs. version (D_Ddoc) { /// struct Library {} } /// version (all)