rust/tests/ui/rfcs/rfc-2632-const-trait-impl/super-traits-fail-3.rs
2023-12-27 12:51:32 +01:00

23 lines
541 B
Rust

#![feature(const_trait_impl, effects)]
// revisions: yy yn ny nn
//[yy] check-pass
#[cfg_attr(any(yy, yn), const_trait)]
trait Foo {
fn a(&self);
}
#[cfg_attr(any(yy, ny), const_trait)]
trait Bar: ~const Foo {}
//[ny,nn]~^ ERROR: `~const` can only be applied to `#[const_trait]`
//[ny,nn]~| ERROR: `~const` can only be applied to `#[const_trait]`
//[yn,nn]~^^^ ERROR: `~const` is not allowed here
const fn foo<T: ~const Bar>(x: &T) {
//[yn,nn]~^ ERROR: `~const` can only be applied to `#[const_trait]`
x.a();
}
fn main() {}