rust/tests/ui/rfc-2632-const-trait-impl/issue-92230-wf-super-trait-env.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
268 B
Rust
Raw Normal View History

// Regression test for #92230.
//
// check-pass
#![feature(const_trait_impl)]
2022-08-28 01:27:31 -05:00
#[const_trait]
pub trait Super {}
2022-08-28 01:27:31 -05:00
#[const_trait]
pub trait Sub: Super {}
impl<A> const Super for &A where A: ~const Super {}
impl<A> const Sub for &A where A: ~const Sub {}
fn main() {}