Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/doc/unstable-book/src/compiler-flags/branch-protection.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# `branch-protection`

The tracking issue for this feature is: [#113369](https://github.com/rust-lang/rust/issues/113369).

------------------------

This option lets you enable branch authentication instructions on AArch64.
This option is only accepted when targeting AArch64 architectures.
It takes some combination of the following values, separated by a `,`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
The `more_qualified_paths` feature can be used in order to enable the
use of qualified paths in patterns.

The tracking issue for this feature is: [#86935](https://github.com/rust-lang/rust/issues/86935).

------------------------

## Example

```rust
Expand Down
4 changes: 4 additions & 0 deletions src/doc/unstable-book/src/language-features/postfix-match.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
`postfix-match` adds the feature for matching upon values postfix
the expressions that generate the values.

The tracking issue for this feature is: [#121618](https://github.com/rust-lang/rust/issues/121618).

------------------------

```rust,edition2021
#![feature(postfix_match)]

Expand Down
Loading