aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3568.rs
blob: 222a174ef381d29fd4064b57a6ea1cd5c555144d (plain)
1
2
3
4
5
6
7
pub type T = ();
mod foo {
    pub use super::T;
}

pub use foo::super::foo::S as T;
// { dg-error ".super. can only be used in start position" "" { target *-*-* } .-1 }