1
Fork 0
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.

23 lines
585 B
Rust
Raw Normal View History

2023-12-19 04:28:21 +00:00
#![feature(const_trait_impl, effects)]
//@ revisions: yy yn ny nn
#[cfg_attr(any(yy, yn), const_trait)]
2022-01-29 01:49:15 +11:00
trait Foo {
fn a(&self);
}
#[cfg_attr(any(yy, ny), const_trait)]
2022-01-29 01:49:15 +11:00
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]`
//[ny,nn]~| ERROR: `~const` can only be applied to `#[const_trait]`
//[yn,nn]~^^^^ ERROR: `~const` is not allowed here
2022-01-29 01:49:15 +11:00
const fn foo<T: Bar>(x: &T) {
x.a();
2023-12-19 04:28:21 +00:00
//[yy,yn]~^ ERROR mismatched types
// FIXME(effects) diagnostic
2022-01-29 01:49:15 +11:00
}
fn main() {}