]> git.lizzy.rs Git - rust.git/blob - tests/ui/error-codes/E0067.rs
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[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 }