mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-14 18:03:04 +00:00
13 lines
286 B
Rust
13 lines
286 B
Rust
//@ only-wasm32-wasip1
|
|
#![deny(warnings)]
|
|
|
|
use run_make_support::{fs as rfs, rustc};
|
|
|
|
fn main() {
|
|
rustc().input("foo.rs").target("wasm32-wasip1").arg("-Clto").opt().run();
|
|
|
|
let bytes = rfs::read("foo.wasm");
|
|
println!("{}", bytes.len());
|
|
assert!(bytes.len() < 50_000);
|
|
}
|