about summary refs log tree commit diff
path: root/tests/ui/methods/missing-method-on-type-parameter.rs
blob: cbcbeea4d4cd0bf7a83f66c576c95be4396a8d79 (plain)
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() {}