mirror of https://github.com/rust-lang/rust
19 lines
359 B
Rust
19 lines
359 B
Rust
//@ only-wasm32-wasip1
|
|
#![deny(warnings)]
|
|
|
|
use run_make_support::{rfs, rustc};
|
|
|
|
fn main() {
|
|
rustc()
|
|
.input("foo.rs")
|
|
.target("wasm32-wasip1")
|
|
.arg("-Clto")
|
|
.arg("-Cstrip=debuginfo")
|
|
.opt()
|
|
.run();
|
|
|
|
let bytes = rfs::read("foo.wasm");
|
|
println!("{}", bytes.len());
|
|
assert!(bytes.len() < 50_000);
|
|
}
|