blob: ff21e21b629df445ae5407736f3b954229c9d215 [file] [log] [blame]
//@ check-pass
// https://github.com/rust-lang/rust/issues/56593#issue-388659456
struct Foo;
mod foo {
use super::*;
#[derive(Debug)]
pub struct Foo;
}
mod bar {
use super::foo::*;
fn bar(_: Foo) {}
}
fn main() {}