mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
rustdoc: Mark --extern-private
as unstable
It's not even stable in rustc so it shouldn't be stable in rustdoc.
This commit is contained in:
parent
f1b882b558
commit
4fcb3384ad
@ -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…
Reference in New Issue
Block a user