rust/src/test/ui/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.

17 lines
202 B
Rust
Raw Normal View History

2022-01-29 01:49:15 +11:00
#![feature(const_trait_impl)]
trait Foo {
fn a(&self);
}
trait Bar: ~const Foo {}
struct S;
impl Foo for S {
fn a(&self) {}
}
impl const Bar for S {}
//~^ ERROR the trait bound
fn main() {}