summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/super-traits-fail-2.rs
blob: 93fd96f8f2942585dadfab5ef8f41d997c82d7f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![feature(const_trait_impl)]
// known-bug: #110395
// revisions: yy yn ny nn

#[cfg_attr(any(yy, yn), const_trait)]
trait Foo {
    fn a(&self);
}

#[cfg_attr(any(yy, ny), const_trait)]
trait Bar: ~const Foo {}
// FIXME [ny,nn]~^ ERROR: ~const can only be applied to `#[const_trait]`
// FIXME [ny,nn]~| ERROR: ~const can only be applied to `#[const_trait]`

const fn foo<T: Bar>(x: &T) {
    x.a();
    // FIXME [yn,yy]~^ ERROR the trait bound
}

fn main() {}