2024-06-30 17:08:45 +00:00
|
|
|
//@ compile-flags: -Znext-solver
|
2024-10-30 18:03:44 +00:00
|
|
|
#![feature(const_trait_impl)]
|
2022-10-03 17:08:42 +00:00
|
|
|
//@ 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);
|
|
|
|
|
}
|
2022-10-03 17:08:42 +00:00
|
|
|
|
|
|
|
|
#[cfg_attr(any(yy, ny), const_trait)]
|
2022-01-29 01:49:15 +11:00
|
|
|
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]`
|
2024-10-20 19:49:11 +00:00
|
|
|
//[ny]~| ERROR: `~const` can only be applied to `#[const_trait]`
|
|
|
|
|
//[ny]~| 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();
|
2024-10-02 19:42:06 +08:00
|
|
|
//[yy,yn]~^ ERROR the trait bound `T: ~const Foo`
|
2024-12-23 21:49:48 +00:00
|
|
|
//[nn,ny]~^^ ERROR cannot call non-const method `<T as Foo>::a` in constant functions
|
2022-01-29 01:49:15 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|