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

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

22 lines
275 B
Rust
Raw Normal View History

2023-07-27 15:51:02 +00:00
// check-pass
// known-bug: #110395
2022-01-29 01:49:15 +11:00
#![feature(const_trait_impl)]
2022-08-28 06:27:31 +00:00
#[const_trait]
2022-01-29 01:49:15 +11:00
trait Foo {
fn a(&self);
}
2022-08-28 06:27:31 +00:00
#[const_trait]
2022-01-29 01:49:15 +11:00
trait Bar: ~const Foo {}
struct S;
impl Foo for S {
fn a(&self) {}
}
impl const Bar for S {}
2023-07-27 15:51:02 +00:00
//FIXME ~^ ERROR the trait bound
2022-01-29 01:49:15 +11:00
fn main() {}