Rollup merge of #66655 - ollie27:rustdoc_extern-private_unstable, r=GuillaumeGomez
rustdoc: Mark `--extern-private` as unstable It's not even stable in rustc so it shouldn't be stable in rustdoc. r? @kinnison
This commit is contained in:
commit
8ad3b5ccca
2 changed files with 2 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ fn opts() -> Vec<RustcOptGroup> {
|
|||
stable("extern", |o| {
|
||||
o.optmulti("", "extern", "pass an --extern to rustc", "NAME[=PATH]")
|
||||
}),
|
||||
stable("extern-private", |o| {
|
||||
unstable("extern-private", |o| {
|
||||
o.optmulti("", "extern-private",
|
||||
"pass an --extern to rustc (compatibility only)", "NAME=PATH")
|
||||
}),
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
// aux-build:issue-66159-1.rs
|
||||
// compile-flags:-Z unstable-options
|
||||
// extern-private:issue_66159_1
|
||||
|
||||
// The issue was an ICE which meant that we never actually generated the docs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue