about summary refs log tree commit diff
path: root/tests/ui/structs/btree-struct-usage-8044.rs
blob: 9b544f33f1c2dc39ae6c68627a2dc7eb016f0d3c (plain)
1
2
3
4
5
6
7
8
9
10
// 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) };
}