21 lines
410 B
Rust
21 lines
410 B
Rust
|
#![feature(const_trait_impl)]
|
||
|
|
||
|
// revisions: yy yn ny nn
|
||
|
//[yy] check-pass
|
||
|
|
||
|
#[cfg_attr(any(yy, yn), const_trait)]
|
||
|
trait Foo {
|
||
|
fn a(&self);
|
||
|
}
|
||
|
|
||
|
#[cfg_attr(any(yy, ny), const_trait)]
|
||
|
trait Bar: ~const Foo {}
|
||
|
//[ny,nn]~^ ERROR: ~const can only be applied to `#[const_trait]`
|
||
|
|
||
|
const fn foo<T: ~const Bar>(x: &T) {
|
||
|
//[yn,nn]~^ ERROR: ~const can only be applied to `#[const_trait]`
|
||
|
x.a();
|
||
|
}
|
||
|
|
||
|
fn main() {}
|