summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/extra_unused_type_parameters/extra_unused_type_parameters.rs
blob: 5655232455cb784eb653b0017a8f2c39fc38772d (plain)
1
2
3
4
5
6
7
8
9
pub struct S;

impl S {
    pub fn exported_fn<T>() {
        unimplemented!();
    }
}

fn main() {}