15 lines
206 B
Rust
15 lines
206 B
Rust
|
// See ./struct-default-expanded.rs for generated code.
|
||
|
|
||
|
#![allow(dead_code)]
|
||
|
|
||
|
use pin_project::pin_project;
|
||
|
|
||
|
#[pin_project]
|
||
|
struct Struct<T, U> {
|
||
|
#[pin]
|
||
|
pinned: T,
|
||
|
unpinned: U,
|
||
|
}
|
||
|
|
||
|
fn main() {}
|