]> git.proxmox.com Git - rustc.git/blame - vendor/pin-project-lite/tests/expand/pub/struct.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / vendor / pin-project-lite / tests / expand / pub / struct.rs
CommitLineData
5869c6ff
XL
1use pin_project_lite::pin_project;
2
3pin_project! {
6a06907d 4 pub struct Struct<T, U> {
5869c6ff 5 #[pin]
6a06907d
XL
6 pub pinned: T,
7 pub unpinned: U,
5869c6ff
XL
8 }
9}
10
5869c6ff 11fn main() {}