mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-24 12:54:00 +00:00
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");
|
|
}
|