oden/third-party/vendor/wasm-bindgen-macro/ui-tests/main-debug.rs
2024-03-08 11:03:01 -08:00

18 lines
296 B
Rust

use std::fmt;
use wasm_bindgen::prelude::*;
#[wasm_bindgen(main)]
fn main() -> Result<(), Test> {
unimplemented!()
}
struct Test;
impl fmt::Debug for Test {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
unimplemented!()
}
}
#[wasm_bindgen(main)]
fn fail() {}