blob: bf255bb6b8194bbfc64ba6d388104568fd11e58d [file] [log] [blame]
// compile-pass
#![feature(extern_crate_self)]
extern crate self as foo;
struct S;
mod m {
fn check() {
foo::S; // OK
}
}
fn main() {}