(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
link/
trait_import_1.rs
#[lang = "add"]
pub trait Add<Rhs = Self> {
    type Output;

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