mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
222 B
Rust
12 lines
222 B
Rust
//@ aux-build:rmeta-meta.rs
|
|
//@ no-prefer-dynamic
|
|
//@ build-fail
|
|
|
|
// Check that we do not ICE when we need optimized MIR but it is missing.
|
|
|
|
extern crate rmeta_meta;
|
|
|
|
fn main() {
|
|
rmeta_meta::missing_optimized_mir();
|
|
}
|