summaryrefslogtreecommitdiffstats
path: root/src/test/ui/typeck/autoderef-with-param-env-error.rs
blob: ec96c61c63e3ab813b2a025f3f9cd0ba993d72be (plain)
1
2
3
4
5
6
7
8
9
fn foo()
where
    T: Send,
    //~^ cannot find type `T` in this scope
{
    let s = "abc".to_string();
}

fn main() {}