Move assertion-free rustdoc ice tests to rustdoc-ui
This commit is contained in:
parent
17419f6499
commit
42ee400b0f
3 changed files with 2 additions and 0 deletions
14
tests/rustdoc-ui/ice-unresolved-import-100241.rs
Normal file
14
tests/rustdoc-ui/ice-unresolved-import-100241.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
//! See [`S`].
|
||||
|
||||
// Check that this isn't an ICE
|
||||
//@ should-fail
|
||||
|
||||
// https://github.com/rust-lang/rust/issues/100241
|
||||
|
||||
mod foo {
|
||||
pub use inner::S;
|
||||
//~^ ERROR unresolved imports `inner`, `foo::S`
|
||||
}
|
||||
|
||||
use foo::*;
|
||||
use foo::S;
|
Loading…
Add table
Add a link
Reference in a new issue