rust/tests/ui/traits/issue-95898.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
231 B
Rust
Raw Normal View History

// Test for #95898: The trait suggestion had an extra `:` after the trait.
// edition:2021
fn foo<T:>(t: T) {
t.clone();
//~^ ERROR no method named `clone` found for type parameter `T` in the current scope
}
fn main() {}