rust/tests/ui/traits/const-traits/impl-tilde-const-trait.rs
Michael Goulet e91267f3f0 Move tests
2024-10-22 00:03:09 +00:00

10 lines
130 B
Rust

#![feature(const_trait_impl)]
struct S;
trait T {}
impl ~const T for S {}
//~^ ERROR expected a trait, found type
fn main() {}