]> git.lizzy.rs Git - rust.git/blob - src/test/ui/typeck/autoderef-with-param-env-error.rs
Auto merge of #100578 - Urgau:float-next-up-down, r=scottmcm
[rust.git] / src / test / ui / typeck / autoderef-with-param-env-error.rs
1 fn foo()
2 where
3     T: Send,
4     //~^ cannot find type `T` in this scope
5 {
6     let s = "abc".to_string();
7 }
8
9 fn main() {}