]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0565-1.rs
Rollup merge of #106940 - oli-obk:tait_error, r=compiler-errors
[rust.git] / tests / ui / error-codes / E0565-1.rs
1 // deprecated doesn't currently support literals
2 #[deprecated("since")] //~ ERROR E0565
3 fn f() {  }
4
5 fn main() {  }