blob: 9cebb622eeda3f9ee2abd8037e6a07719adf4ddb [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
extern crate self as foo;
struct S;
mod m {
fn check() {
foo::S; // OK
}
}
fn main() {}