aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/link/trait_import_1.rs
blob: e54b0e19d44cd115036add77ecabf51420fe803c (plain)
1
2
3
4
5
6
7
8
9
#[lang = "sized"]
pub trait Sized {}

#[lang = "add"]
pub trait Add<Rhs = Self> {
    type Output;

    fn add(self, rhs: Rhs) -> Self::Output;
}