]> git.proxmox.com Git - rustc.git/blob - vendor/pin-project-lite/tests/expand/pub/struct.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / vendor / pin-project-lite / tests / expand / pub / struct.rs
1 use pin_project_lite::pin_project;
2
3 pin_project! {
4 pub struct Struct<T, U> {
5 #[pin]
6 pub pinned: T,
7 pub unpinned: U,
8 }
9 }
10
11 fn main() {}