summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/link/trait_import_1.rs
blob: fc7f5168ede14777d10de3bde7f2115ab553263d (plain)
1
2
3
4
5
6
#[lang = "add"]
pub trait Add<Rhs = Self> {
    type Output;

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