rust/tests/ui/traits/const-traits/issue-100222.rs

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

43 lines
1.1 KiB
Rust
Raw Normal View History

//@ revisions: nn ny yn yy
2024-06-30 17:08:45 +00:00
//@ compile-flags: -Znext-solver
//@ check-pass
2024-06-25 09:50:01 +00:00
#![allow(incomplete_features)]
2024-10-30 18:03:44 +00:00
#![feature(const_trait_impl, associated_type_defaults)]
#[cfg_attr(any(yn, yy), const_trait)]
pub trait Index {
type Output;
}
#[cfg_attr(any(ny, yy), const_trait)]
pub trait IndexMut where Self: Index {
const C: <Self as Index>::Output;
type Assoc = <Self as Index>::Output;
fn foo(&mut self, x: <Self as Index>::Output) -> <Self as Index>::Output;
}
impl Index for () { type Output = (); }
2022-08-28 06:27:31 +00:00
#[cfg(not(any(nn, yn)))]
impl const IndexMut for <() as Index>::Output {
const C: <Self as Index>::Output = ();
type Assoc = <Self as Index>::Output;
2022-08-22 11:41:38 +00:00
fn foo(&mut self, x: <Self as Index>::Output) -> <Self as Index>::Output
where <Self as Index>::Output:,
{}
}
2022-08-28 06:27:31 +00:00
#[cfg(any(nn, yn))]
impl IndexMut for <() as Index>::Output {
const C: <Self as Index>::Output = ();
type Assoc = <Self as Index>::Output;
fn foo(&mut self, x: <Self as Index>::Output) -> <Self as Index>::Output
where <Self as Index>::Output:,
{}
}
const C: <() as Index>::Output = ();
fn main() {}