1 2 3 4 5 6
// Regression test for https://github.com/rust-lang/rust/issues/129205 fn x<T: Copy>() { T::try_from(); //~ ERROR E0599 } fn main() {}