mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 06:30:10 +03:00
Update tests; fix link check
This commit is contained in:
parent
fb492bfa8d
commit
6b5d7bb0c2
3 changed files with 16 additions and 16 deletions
|
@ -1046,7 +1046,7 @@ struct CLIUsage
|
||||||
buf ~= t.helpText;
|
buf ~= t.helpText;
|
||||||
if (t.deprecated_)
|
if (t.deprecated_)
|
||||||
buf ~= " [DEPRECATED]";
|
buf ~= " [DEPRECATED]";
|
||||||
if (t.link)
|
if (t.link.length)
|
||||||
buf ~= " (" ~ t.link ~ ")";
|
buf ~= " (" ~ t.link ~ ")";
|
||||||
buf ~= "\n";
|
buf ~= "\n";
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,18 +5,18 @@ TEST_OUTPUT:
|
||||||
----
|
----
|
||||||
Upcoming language changes listed by -preview=name:
|
Upcoming language changes listed by -preview=name:
|
||||||
=all Enables all available upcoming language changes
|
=all Enables all available upcoming language changes
|
||||||
=dip25 implement https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP25.md (Sealed references) [DEPRECATED]
|
=dip25 implement Sealed References DIP [DEPRECATED] (https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP25.md)
|
||||||
=dip1000 implement https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1000.md (Scoped Pointers)
|
=dip1000 implement Scoped Pointers DIP (https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1000.md)
|
||||||
=dip1008 implement https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1008.md (@nogc Throwable)
|
=dip1008 implement @nogc Throwable DIP (https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1008.md)
|
||||||
=dip1021 implement https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md (Mutable function arguments)
|
=dip1021 implement Mutable Function Arguments DIP (https://github.com/dlang/DIPs/blob/master/DIPs/accepted/DIP1021.md)
|
||||||
=bitfields add bitfields https://github.com/dlang/dlang.org/pull/3190
|
=bitfields add C-like bitfields (https://github.com/dlang/dlang.org/pull/3190)
|
||||||
=fieldwise use fieldwise comparisons for struct equality
|
=fieldwise use fieldwise comparisons for struct equality (https://dlang.org/changelog/2.085.0.html#no-cmpsb)
|
||||||
=fixAliasThis when a symbol is resolved, check alias this scope before going to upper scopes
|
=fixAliasThis when a symbol is resolved, check alias this scope before going to upper scopes (https://github.com/dlang/dmd/pull/8885)
|
||||||
=rvaluerefparam enable rvalue arguments to ref parameters
|
=rvaluerefparam enable rvalue arguments to ref parameters (https://github.com/dlang/DIPs/blob/master/DIPs/rejected/DIP1016.md)
|
||||||
=nosharedaccess disable access to shared memory objects
|
=nosharedaccess disable access to shared memory objects (https://dlang.org/spec/const3.html#shared)
|
||||||
=in `in` on parameters means `scope const [ref]` and accepts rvalues
|
=in `in` on parameters means `scope const [ref]` and accepts rvalues (https://dlang.org/spec/function.html#in-params)
|
||||||
=inclusiveincontracts 'in' contracts of overridden methods must be a superset of parent contract
|
=inclusiveincontracts 'in' contracts of overridden methods must be a superset of parent contract (https://dlang.org/changelog/2.095.0.html#inclusive-incontracts)
|
||||||
=fixImmutableConv disallow unsound immutable conversions that were formerly incorrectly permitted
|
=fixImmutableConv disallow functions with a mutable `void[]` parameter to be strongly pure (https://dlang.org/changelog/2.101.0.html#dmd.fix-immutable-conv)
|
||||||
=systemVariables disable access to variables marked '@system' from @safe code
|
=systemVariables disable access to variables marked '@system' from @safe code (https://dlang.org/spec/attribute.html#system-variables)
|
||||||
----
|
----
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -5,8 +5,8 @@ TEST_OUTPUT:
|
||||||
----
|
----
|
||||||
Revertable language changes listed by -revert=name:
|
Revertable language changes listed by -revert=name:
|
||||||
=all Enables all available revertable language changes
|
=all Enables all available revertable language changes
|
||||||
=dip25 revert DIP25 changes https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP25.md [DEPRECATED]
|
=dip25 revert DIP25 changes [DEPRECATED] (https://github.com/dlang/DIPs/blob/master/DIPs/archive/DIP25.md)
|
||||||
=dip1000 revert DIP1000 changes https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1000.md (Scoped Pointers)
|
=dip1000 revert DIP1000 changes (Scoped Pointers) (https://github.com/dlang/DIPs/blob/master/DIPs/other/DIP1000.md)
|
||||||
=intpromote revert integral promotions for unary + - ~ operators
|
=intpromote revert integral promotions for unary + - ~ operators
|
||||||
=dtorfields don't destruct fields of partially constructed objects
|
=dtorfields don't destruct fields of partially constructed objects
|
||||||
----
|
----
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue