1 use thiserror::Error; 2 3 #[derive(Error, Debug)] 4 #[error("invalid rdo_lookahead_frames {0} (expected < {})", i32::MAX)] 5 pub struct Error(u32); 6 main()7 fn main() {} 8