2016-11-10 18:29:27 +13:00
|
|
|
// no-prefer-dynamic
|
2016-12-23 19:39:20 +13:00
|
|
|
// compile-flags: --emit=metadata
|
2016-11-10 18:29:27 +13:00
|
|
|
|
2016-12-23 19:39:20 +13:00
|
|
|
#![crate_type="rlib"]
|
2016-11-10 18:29:27 +13:00
|
|
|
|
|
|
|
pub struct Foo {
|
|
|
|
pub field: i32,
|
|
|
|
}
|
2023-08-29 19:29:14 +02:00
|
|
|
|
|
|
|
pub fn missing_optimized_mir() {
|
|
|
|
println!("indeed");
|
|
|
|
}
|