mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 18:23:49 +00:00
456007af12
Closes 51388.
13 lines
178 B
Rust
13 lines
178 B
Rust
// no-prefer-dynamic
|
|
// compile-flags: --emit=metadata
|
|
|
|
#![crate_type="rlib"]
|
|
|
|
pub struct Foo {
|
|
pub field: i32,
|
|
}
|
|
|
|
pub fn missing_optimized_mir() {
|
|
println!("indeed");
|
|
}
|