]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0565-1.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[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() {  }