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

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

21 lines
461 B
Rust
Raw Normal View History

2022-01-28 08:49:15 -06:00
#![feature(const_trait_impl)]
2023-07-27 10:51:02 -05:00
// known-bug: #110395
// revisions: yy yn ny nn
#[cfg_attr(any(yy, yn), const_trait)]
2022-01-28 08:49:15 -06:00
trait Foo {
fn a(&self);
}
#[cfg_attr(any(yy, ny), const_trait)]
2022-01-28 08:49:15 -06:00
trait Bar: ~const Foo {}
2023-07-27 10:51:02 -05:00
// FIXME [ny,nn]~^ ERROR: ~const can only be applied to `#[const_trait]`
// FIXME [ny,nn]~| ERROR: ~const can only be applied to `#[const_trait]`
2022-01-28 08:49:15 -06:00
const fn foo<T: Bar>(x: &T) {
x.a();
2023-07-27 10:51:02 -05:00
// FIXME [yn,yy]~^ ERROR the trait bound
2022-01-28 08:49:15 -06:00
}
fn main() {}