rust/tests/ui/const-generics/issues/issue-86033.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
297 B
Rust
Raw Normal View History

2021-12-08 16:25:52 -06:00
// check-pass
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
pub trait IsTrue<const T: bool> {}
impl IsTrue<true> for () {}
pub trait IsZST {}
impl<T> IsZST for T
where
(): IsTrue<{ std::mem::size_of::<T>() == 0 }>
{}
fn _func() -> impl IsZST {
|| {}
}
fn main() {}