13 lines
180 B
Rust
13 lines
180 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");
|
|
}
|