mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 04:23:12 +03:00
8fd5f4ed6a
Fixes #1669
37 lines
547 B
Rust
37 lines
547 B
Rust
use wasm_bindgen::prelude::*;
|
|
use wasm_bindgen_test::*;
|
|
|
|
#[wasm_bindgen(module = "tests/wasm/validate_prt.js")]
|
|
extern "C" {
|
|
fn js_works();
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub struct Fruit {
|
|
name: String,
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
impl Fruit {
|
|
pub fn name(&self) -> String {
|
|
self.name.clone()
|
|
}
|
|
|
|
#[wasm_bindgen(constructor)]
|
|
pub fn new(name: String) -> Self {
|
|
Fruit { name }
|
|
}
|
|
|
|
pub fn rot(self) {
|
|
drop(self);
|
|
}
|
|
}
|
|
|
|
#[wasm_bindgen]
|
|
pub fn eat(_: Fruit) {}
|
|
|
|
#[wasm_bindgen_test]
|
|
fn works() {
|
|
js_works();
|
|
}
|