DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / ui / rfcs / 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() {}