//@ build-fail //@ dont-require-annotations: NOTE trait Unsigned { const MAX: u8; } struct U8(u8); impl Unsigned for U8 { const MAX: u8 = 0xff; } struct Sum(A, B); impl Unsigned for Sum { const MAX: u8 = A::MAX + B::MAX; //~^ ERROR attempt to compute `u8::MAX + u8::MAX`, which would overflow //~| ERROR attempt to compute `u8::MAX + u8::MAX`, which would overflow } fn foo(_: T) -> &'static u8 { &Sum::::MAX //~^ NOTE constant } fn main() { foo(0); }