rust/tests/ui/const-generics/inhabited-assoc-ty-ice-2.rs

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

22 lines
404 B
Rust
Raw Normal View History

//@ run-pass
#![feature(generic_const_exprs)]
2021-02-23 17:35:48 -06:00
#![allow(incomplete_features)]
// This tests that the inhabited check doesn't cause
2021-02-23 17:35:48 -06:00
// ICEs by trying to evaluate `T::ASSOC` with an incorrect `ParamEnv`.
trait Foo {
const ASSOC: usize = 1;
}
#[allow(dead_code)]
2021-02-23 17:35:48 -06:00
struct Iced<T: Foo>(T, [(); T::ASSOC])
where
[(); T::ASSOC]: ;
impl Foo for u32 {}
fn main() {
let _iced: Iced<u32> = return;
}