Sign in
android
/
toolchain
/
rustc
/
d59a28787b7ba06edbd1e4528a42b66d67dc6a19
/
.
/
src
/
test
/
ui
/
error-codes
/
E0067.rs
blob: 5925443ddc4a7185e9665607dc19df1826edf042 [
file
] [
log
] [
blame
]
use
std
::
collections
::
LinkedList
;
fn
main
()
{
LinkedList
::
new
()
+=
1
;
//~ ERROR E0368
//~^ ERROR E0067
}