]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/autoderef-with-param-env-error.rs
Rollup merge of #106922 - ChayimFriedman2:patch-5, r=workingjubilee
[rust.git] / tests / 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() {}