Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-8044.rs
blob: b965e0bbb1077d3ca472d947625df0180199fd30 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
//@ aux-build:issue-8044.rs
//@ pretty-expanded FIXME #23616
extern
crate issue_8044
as
minimal
;
use
minimal
::{
BTree
,
leaf
};
pub
fn
main
()
{
BTree
::<
isize
>
{
node
:
leaf
(
1
)
};
}