//@ known-bug: #136063 #![feature(generic_const_exprs)] trait A {} impl A<1> for bool {} fn bar(arg : &dyn A) { bar(true) } pub fn main() {}