From d23eea59f88de2b1b41812862da57bce76b651e0 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 22 Jun 2022 11:42:24 -0700 Subject: [PATCH] Add tracking issues to `--extern` option docs. --- src/doc/unstable-book/src/compiler-flags/extern-options.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/doc/unstable-book/src/compiler-flags/extern-options.md b/src/doc/unstable-book/src/compiler-flags/extern-options.md index 858eee5d2c283..dfc1de77be4e4 100644 --- a/src/doc/unstable-book/src/compiler-flags/extern-options.md +++ b/src/doc/unstable-book/src/compiler-flags/extern-options.md @@ -1,5 +1,10 @@ # `--extern` Options +* Tracking issue for `--extern` crate modifiers: [#98405](https://github.com/rust-lang/rust/issues/98405) +* Tracking issue for `noprelude`: [#98398](https://github.com/rust-lang/rust/issues/98398) +* Tracking issue for `priv`: [#98399](https://github.com/rust-lang/rust/issues/98399) +* Tracking issue for `nounused`: [#98400](https://github.com/rust-lang/rust/issues/98400) + The behavior of the `--extern` flag can be modified with `noprelude`, `priv` or `nounused` options. This is unstable feature, so you have to provide `-Zunstable-options` to enable it.