mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-06 13:29:53 +00:00
12 lines
151 B
Rust
12 lines
151 B
Rust
#[wasm_bindgen_test]
|
|
#[ignore]
|
|
fn should_panic() {
|
|
panic!()
|
|
}
|
|
|
|
#[wasm_bindgen_test]
|
|
#[ignore = "reason"]
|
|
fn should_panic_string() {
|
|
panic!()
|
|
}
|