Files
Notes/notes-service/vendor/pin-project-lite/tests/expand/pub/struct.rs
T
2026-08-01 16:11:49 +03:00

14 lines
213 B
Rust

// SPDX-License-Identifier: Apache-2.0 OR MIT
use pin_project_lite::pin_project;
pin_project! {
pub struct Struct<T, U> {
#[pin]
pub pinned: T,
pub unpinned: U,
}
}
fn main() {}