wasm-bindgen/crates/macro/ui-tests/unused-attributes.rs

16 lines
203 B
Rust
Raw Normal View History

2019-01-02 08:35:01 -08:00
#![crate_type = "rlib"]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
struct A;
#[wasm_bindgen]
impl A {
#[wasm_bindgen(method)]
#[wasm_bindgen(method)]
pub fn foo() {
}
}