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