mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
456007af12
Closes 51388.
12 lines
219 B
Rust
12 lines
219 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();
|
|
}
|