mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
12 lines
164 B
Rust
12 lines
164 B
Rust
//@ known-bug: #133199
|
|
//@ aux-build: aux133199.rs
|
|
|
|
extern crate aux133199;
|
|
|
|
use aux133199::FixedBitSet;
|
|
|
|
fn main() {
|
|
FixedBitSet::<7>::new();
|
|
//~^ ERROR
|
|
}
|