rust/tests/ui/const-generics/issues/issue-86535-2.rs

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

25 lines
452 B
Rust
Raw Normal View History

2021-09-02 15:20:51 -05:00
//@ run-pass
#![feature(adt_const_params, unsized_const_params, generic_const_exprs)]
2021-09-02 15:30:13 -05:00
#![allow(incomplete_features)]
2021-09-02 15:20:51 -05:00
pub trait Foo {
const ASSOC_C: usize;
fn foo()
where
[(); Self::ASSOC_C]:;
2021-09-02 15:20:51 -05:00
}
struct Bar<const N: &'static ()>;
impl<const N: &'static ()> Foo for Bar<N> {
const ASSOC_C: usize = 3;
fn foo()
where
[u8; Self::ASSOC_C]:,
{
2021-09-02 15:20:51 -05:00
let _: [u8; Self::ASSOC_C] = loop {};
}
}
fn main() {}