//@ known-bug: #124151 #![feature(generic_const_exprs)] use std::ops::Add; pub struct Dimension; pub struct Quantity(S); impl Add for Quantity {} pub fn add(x: Quantity) -> Quantity { x + y }