wasm-bindgen/crates/macro/ui-tests/pub-not-copy.rs

11 lines
140 B
Rust
Raw Normal View History

#![crate_type = "rlib"]
extern crate wasm_bindgen;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub struct A {
pub field: String,
}