Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
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
()
{}