//@ known-bug: #132882 use std::ops::Add; pub trait Numoid where for &'a Self: Add, { } pub fn compute(a: N) -> N { &a + a }