2024-06-30 17:08:45 +00:00
|
|
|
//@ compile-flags: -Znext-solver
|
2024-06-25 09:50:01 +00:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
#![feature(const_trait_impl, effects)]
|
2022-10-03 17:08:42 +00:00
|
|
|
|
|
|
|
|
//@ revisions: yy yn ny nn
|
2024-08-24 14:01:00 +08:00
|
|
|
//@[yy] check-pass
|
2022-10-03 17:08:42 +00:00
|
|
|
|
|
|
|
|
#[cfg_attr(any(yy, yn), const_trait)]
|
|
|
|
|
trait Foo {
|
|
|
|
|
fn a(&self);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg_attr(any(yy, ny), const_trait)]
|
|
|
|
|
trait Bar: ~const Foo {}
|
2023-12-18 17:55:55 +01:00
|
|
|
//[ny,nn]~^ ERROR: `~const` can only be applied to `#[const_trait]`
|
|
|
|
|
//[ny,nn]~| ERROR: `~const` can only be applied to `#[const_trait]`
|
2023-10-31 13:45:26 +00:00
|
|
|
//[ny,nn]~| ERROR: `~const` can only be applied to `#[const_trait]`
|
|
|
|
|
//[yn,nn]~^^^^ ERROR: `~const` is not allowed here
|
2022-10-03 17:08:42 +00:00
|
|
|
|
|
|
|
|
const fn foo<T: ~const Bar>(x: &T) {
|
2023-12-18 17:55:55 +01:00
|
|
|
//[yn,nn]~^ ERROR: `~const` can only be applied to `#[const_trait]`
|
2022-10-03 17:08:42 +00:00
|
|
|
x.a();
|
2024-10-02 19:42:06 +08:00
|
|
|
//[yn]~^ ERROR: the trait bound `T: ~const Foo` is not satisfied
|
2022-10-03 17:08:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|