mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
11 lines
208 B
Rust
11 lines
208 B
Rust
// 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) };
|
|
}
|