DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.70.0%2Bdfsg1-7~deb11u1 / tests / ui / rfc-2632-const-trait-impl / impl-tilde-const-trait.rs
123456789
#![feature(const_trait_impl)] struct S; trait T {} impl ~const T for S {} //~^ ERROR expected a trait, found type fn main() {}