summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen-macro/ui-tests/struct-fields.rs
blob: dee2c89343d9d970b3c0c26525a583720ef12b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
extern "C" {
    pub type Foo;
}

#[wasm_bindgen]
struct Bar {
    pub a: Foo,
    #[wasm_bindgen(getter_with_clone)]
    pub b: Foo,
}

fn main() {}