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