更新libclamav库1.0.0版本
This commit is contained in:
18
clamav/libclamav_rust/.cargo/vendor/wasm-bindgen-macro/ui-tests/invalid-setter.rs
vendored
Normal file
18
clamav/libclamav_rust/.cargo/vendor/wasm-bindgen-macro/ui-tests/invalid-setter.rs
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
use wasm_bindgen::prelude::*;
|
||||
|
||||
#[wasm_bindgen]
|
||||
extern "C" {
|
||||
type A;
|
||||
|
||||
#[wasm_bindgen(setter, method)]
|
||||
fn a(this: &A, b: i32);
|
||||
|
||||
#[wasm_bindgen(setter = x, method)]
|
||||
fn b(this: &A, b: i32);
|
||||
|
||||
#[wasm_bindgen(setter, method, js_name = x)]
|
||||
fn c(this: &A, b: i32);
|
||||
}
|
||||
|
||||
fn main() {}
|
Reference in New Issue
Block a user