aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3524.rs
blob: 62c8c351274796509b38f99b9764cc9b92c89581 (plain)
1
2
3
4
5
6
7
8
9
struct A {}
// { dg-warning "struct is never constructed" "" { target *-*-* } .-1 }

impl A {
    fn main() {}
    // { dg-warning "associated function is never used: .main." "" { target *-*-* } .-1 }
}

fn main() {}