blob: 393fc7a1f72e0bbbe4e7222d0581dad230942575 [file] [log] [blame]
//@ edition:2018
use st::cell::Cell; //~ ERROR failed to resolve: use of unresolved module or unlinked crate `st`
mod bar {
pub fn bar() { bar::baz(); } //~ ERROR failed to resolve: function `bar` is not a crate or module
fn baz() {}
}
use bas::bar; //~ ERROR unresolved import `bas`
struct Foo {
bar: st::cell::Cell<bool> //~ ERROR failed to resolve: use of unresolved module or unlinked crate `st`
}
fn main() {}