]> git.proxmox.com Git - rustc.git/blob - tests/ui/typeck/autoderef-with-param-env-error.rs
New upstream version 1.68.2+dfsg1
[rustc.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() {}