rust/tests/ui/rfcs/rfc-2632-const-trait-impl/super-traits-fail-3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
508 B
Rust
Raw Normal View History

#![feature(const_trait_impl)]
// revisions: yy yn ny nn
2023-07-29 03:20:25 -05:00
//[yy] known-bug: #110395
//FIXME [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]`
const fn foo<T: ~const Bar>(x: &T) {
//[yn,nn]~^ ERROR: ~const can only be applied to `#[const_trait]`
x.a();
}
fn main() {}