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