mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-31 00:23:58 +00:00
11 lines
238 B
Rust
11 lines
238 B
Rust
|
//! This test validates that the generated bindings don't cause linting warnings
|
||
|
//! when used with structs annotated with `#[must_use]`.
|
||
|
|
||
|
#![deny(unused)]
|
||
|
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
#[must_use]
|
||
|
pub struct MustUse {}
|