mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +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
|
|
}
|