Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
structs
/
btree-struct-usage-8044.rs
blob: 9b544f33f1c2dc39ae6c68627a2dc7eb016f0d3c [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/8044
//@ run-pass
//@ aux-build:aux-8044.rs
extern
crate aux_8044
as
minimal
;
use
minimal
::{
BTree
,
leaf
};
pub
fn
main
()
{
BTree
::<
isize
>
{
node
:
leaf
(
1
)
};
}