Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-2383.rs
blob: eecbaa2562e897158c4b3864ba3a0ecc5d0b4ef6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ pretty-expanded FIXME #23616
use
std
::
collections
::
VecDeque
;
pub
fn
main
()
{
let
mut
q
=
VecDeque
::
new
();
q
.
push_front
(
10
);
}