diff options
Diffstat (limited to 'vendor/wasm-bindgen-macro/ui-tests/struct-fields.rs')
-rw-r--r-- | vendor/wasm-bindgen-macro/ui-tests/struct-fields.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/wasm-bindgen-macro/ui-tests/struct-fields.rs b/vendor/wasm-bindgen-macro/ui-tests/struct-fields.rs new file mode 100644 index 000000000..dee2c8934 --- /dev/null +++ b/vendor/wasm-bindgen-macro/ui-tests/struct-fields.rs @@ -0,0 +1,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() {} |