aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/use_2.rs
blob: b89ff82caaa1b1b800190e8514a689795b823ff7 (plain)
1
2
3
4
5
6
7
mod foo {
    pub struct S;
}

use foo::S as T;

const V: T = T; // { dg-warning "unused name" }