Skip to content

Commit

Permalink
Rollup merge of #67008 - ollie27:rustdoc_issue_61732, r=Centril
Browse files Browse the repository at this point in the history
rustdoc: Add test for fixed issue

#61732 was almost certainly fixed by #63400.

Closes #61732
  • Loading branch information
JohnTitor authored Dec 6, 2019
2 parents cdbdb68 + b6b0fd9 commit 0df1609
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/rustdoc-ui/issue-61732.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// This previously triggered an ICE.

pub(in crate::r#mod) fn main() {}
//~^ ERROR expected module, found unresolved item
11 changes: 11 additions & 0 deletions src/test/rustdoc-ui/issue-61732.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
error[E0577]: expected module, found unresolved item `crate::r#mod`
--> $DIR/issue-61732.rs:3:8
|
LL | pub(in crate::r#mod) fn main() {}
| ^^^^^^^^^^^^ not a module

error: Compilation failed, aborting rustdoc

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0577`.

0 comments on commit 0df1609

Please sign in to comment.