rustdoc: Add test for fixed issue

This commit is contained in:
Oliver Middleton 2019-12-04 01:31:35 +00:00
parent d8bdb3fdcb
commit b6b0fd9148
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,4 @@
// This previously triggered an ICE.
pub(in crate::r#mod) fn main() {}
//~^ ERROR expected module, found unresolved item

View File

@ -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`.