aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3402-1.rs
blob: ed603cecaadad25e799ab5a0677e8234aa4c9b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pub struct Foo {
    a: i32,
    // { dg-warning "field is never read" "" { target *-*-* } .-1 }
}
pub struct Bar(i32);

#[lang = "sized"]
trait Sized {}

pub mod core {
    pub mod default {
        pub trait Default: Sized {
            fn default() -> Self;
        }

        impl Default for i32 {
            fn default() -> Self {
                0
            }
        }
    }
}

impl ::core::default::Default for Bar {
    #[inline]
    fn default() -> Bar {
        Bar(core::default::Default::default())
    }
}