DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / rfc-2632-const-trait-impl / issue-90052.rs
123456789
#![feature(const_trait_impl)] #[const_trait] trait Bar {} fn foo<T>() where T: ~const Bar {} //~^ ERROR `~const` is not allowed fn main() {}