1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-07-26 17:41:56 +00:00
Files
wasm-bindgen/crates/macro/ui-tests/unused-attributes.rs

14 lines
164 B
Rust
Raw Normal View History

use wasm_bindgen::prelude::*;
struct A;
#[wasm_bindgen]
impl A {
#[wasm_bindgen(method)]
#[wasm_bindgen(method)]
pub fn foo() {
}
}
fn main() {}