rust/tests/ui/missing-trait-bounds/issue-35677.rs

12 lines
223 B
Rust

//@ run-rustfix
#![allow(dead_code)]
use std::collections::HashSet;
use std::hash::Hash;
fn is_subset<T>(this: &HashSet<T>, other: &HashSet<T>) -> bool {
this.is_subset(other)
//~^ ERROR the method
}
fn main() {}