mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-22 12:28:18 +00:00
27 lines
877 B
Rust
27 lines
877 B
Rust
use pin_project_lite::pin_project;
|
|
enum Enum<T, U> {
|
|
Struct { pinned: T, unpinned: U },
|
|
Unit,
|
|
}
|
|
#[allow(single_use_lifetimes)]
|
|
#[allow(clippy::unknown_clippy_lints)]
|
|
#[allow(clippy::used_underscore_binding)]
|
|
const _: () = {
|
|
impl<T, U> Enum<T, U> {}
|
|
#[allow(non_snake_case)]
|
|
struct __Origin<'__pin, T, U> {
|
|
__dummy_lifetime: ::pin_project_lite::__private::PhantomData<&'__pin ()>,
|
|
Struct: (T, ::pin_project_lite::__private::AlwaysUnpin<U>),
|
|
Unit: (),
|
|
}
|
|
impl<'__pin, T, U> ::pin_project_lite::__private::Unpin for Enum<T, U> where
|
|
__Origin<'__pin, T, U>: ::pin_project_lite::__private::Unpin
|
|
{
|
|
}
|
|
trait MustNotImplDrop {}
|
|
#[allow(clippy::drop_bounds, drop_bounds)]
|
|
impl<T: ::pin_project_lite::__private::Drop> MustNotImplDrop for T {}
|
|
impl<T, U> MustNotImplDrop for Enum<T, U> {}
|
|
};
|
|
fn main() {}
|