about summary refs log tree commit diff
path: root/tests/ui/issues/issue-55376.rs
blob: 5a6862b6530b1ea10dfb53e68a1e9219e1cf1e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ run-pass
// Tests that paths in `pub(...)` don't fail HIR verification.

#![allow(unused_imports)]
#![allow(dead_code)]

pub(self) use self::my_mod::Foo;

mod my_mod {
    pub(super) use self::Foo as Bar;
    pub(in super::my_mod) use self::Foo as Baz;

    pub struct Foo;
}

fn main() {}