Files
rust/tests/ui/structs/btree-struct-usage-8044.rs

11 lines
208 B
Rust
Raw Permalink Normal View History

2025-07-13 16:56:31 -04:00
// 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) };
}