Sign in
rust
/
rust
/
e2893f7c95e45f74c8bc5dbd033486c5bfaa4deb
/
.
/
tests
/
ui
/
methods
/
missing-method-on-type-parameter.rs
blob: e1cd087208a0a85218f16b792e64b70507674cd0 [
file
] [
log
] [
blame
]
//@ edition:2015..2021
// Regression test for https://github.com/rust-lang/rust/issues/129205
fn
x
<
T
:
Copy
>()
{
T
::
try_from
();
//~ ERROR E0599
}
fn
main
()
{}