about summary refs log tree commit diff
path: root/tests/ui/missing-trait-bounds/issue-35677.rs
blob: e2d13bbe2f6fb175399cdc8e801edbfbe6834770 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ 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() {}