Skip to content

Commit 4fcb338

Browse files
committed
rustdoc: Mark --extern-private as unstable
It's not even stable in rustc so it shouldn't be stable in rustdoc.
1 parent f1b882b commit 4fcb338

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/librustdoc/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ fn opts() -> Vec<RustcOptGroup> {
144144
stable("extern", |o| {
145145
o.optmulti("", "extern", "pass an --extern to rustc", "NAME[=PATH]")
146146
}),
147-
stable("extern-private", |o| {
147+
unstable("extern-private", |o| {
148148
o.optmulti("", "extern-private",
149149
"pass an --extern to rustc (compatibility only)", "NAME=PATH")
150150
}),

src/test/rustdoc/issue-66159.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// aux-build:issue-66159-1.rs
2+
// compile-flags:-Z unstable-options
23
// extern-private:issue_66159_1
34

45
// The issue was an ICE which meant that we never actually generated the docs

0 commit comments

Comments
 (0)