rust/tests/ui/rfc-2632-const-trait-impl/trait-where-clause.rs

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

27 lines
360 B
Rust
Raw Normal View History

#![feature(const_trait_impl)]
#[const_trait]
trait Bar {}
trait Foo {
fn a();
fn b() where Self: ~const Bar;
2021-08-28 10:53:26 -05:00
fn c<T: ~const Bar>();
}
fn test1<T: Foo>() {
T::a();
T::b();
//~^ ERROR the trait bound
2021-08-28 10:53:26 -05:00
T::c::<T>();
//~^ ERROR the trait bound
}
fn test2<T: Foo + Bar>() {
T::a();
T::b();
2021-08-28 10:53:26 -05:00
T::c::<T>();
}
fn main() {}