]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0067.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / error-codes / E0067.rs
1 use std::collections::LinkedList;
2
3 fn main() {
4     LinkedList::new() += 1; //~ ERROR E0368
5                             //~^ ERROR E0067
6 }