rust/tests/crashes/133199.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
164 B
Rust
Raw Normal View History

2024-11-21 14:09:46 +01:00
//@ known-bug: #133199
//@ aux-build: aux133199.rs
extern crate aux133199;
use aux133199::FixedBitSet;
fn main() {
FixedBitSet::<7>::new();
//~^ ERROR
}