f784fa7bd9
Done by removing all uses of `#![no_core]`, and the reverting the ones that failed. More involved ones are in a later commit.
14 lines
309 B
Rust
14 lines
309 B
Rust
// @!has "$.index[*][?(@.name=='foo')]"
|
|
mod foo {
|
|
// @has "$.index[*][?(@.name=='Foo')]"
|
|
pub struct Foo;
|
|
}
|
|
|
|
// @has "$.index[*].inner[?(@.import.source=='foo::Foo')]"
|
|
pub use foo::Foo;
|
|
|
|
pub mod bar {
|
|
// @has "$.index[*].inner[?(@.import.source=='crate::foo::Foo')]"
|
|
pub use crate::foo::Foo;
|
|
}
|