// check-pass #![feature(const_generics, const_evaluatable_checked)] #![allow(incomplete_features)] // This tests that the correct `param_env` is used so that // attempting to normalize `Self::N` does not cause an ICE. pub struct Foo; impl Foo { pub fn foo() {} } pub trait Bar { const N: usize; fn bar() where [(); Self::N]: , { Foo::<{ Self::N }>::foo(); } } fn main() {}