Files
rust/tests/ui/traits/const-traits/const-impl-trait.rs

57 lines
1.1 KiB
Rust
Raw Normal View History

2025-09-12 12:39:31 +03:00
//@ check-pass
2024-10-21 19:37:48 +00:00
//@ compile-flags: -Znext-solver
2022-12-15 14:17:38 +00:00
#![allow(incomplete_features)]
2024-12-05 16:36:30 +00:00
#![feature(const_trait_impl, const_cmp, const_destruct)]
2022-12-15 00:51:34 +00:00
use std::marker::Destruct;
const fn cmp(a: &impl [const] PartialEq) -> bool {
2022-12-15 00:51:34 +00:00
a == a
}
2024-12-05 16:36:30 +00:00
const fn wrap(
x: impl [const] PartialEq + [const] Destruct,
) -> impl [const] PartialEq + [const] Destruct {
2022-12-15 00:51:34 +00:00
x
}
2022-12-15 14:17:38 +00:00
#[const_trait]
trait Foo {
fn huh() -> impl [const] PartialEq + [const] Destruct + Copy;
2022-12-15 14:17:38 +00:00
}
impl const Foo for () {
fn huh() -> impl [const] PartialEq + [const] Destruct + Copy {
2022-12-15 14:17:38 +00:00
123
}
}
2022-12-15 00:51:34 +00:00
const _: () = {
assert!(cmp(&0xDEADBEEFu32));
assert!(cmp(&()));
assert!(wrap(123) == wrap(123));
assert!(wrap(123) != wrap(456));
2022-12-15 14:17:38 +00:00
let x = <() as Foo>::huh();
assert!(x == x);
2022-12-15 00:51:34 +00:00
};
#[const_trait]
trait T {}
struct S;
impl const T for S {}
const fn rpit() -> impl [const] T {
2024-12-05 16:36:30 +00:00
S
}
2022-12-15 00:51:34 +00:00
const fn apit(_: impl [const] T + [const] Destruct) {}
2022-12-15 00:51:34 +00:00
const fn rpit_assoc_bound() -> impl IntoIterator<Item: [const] T> {
2024-12-05 16:36:30 +00:00
Some(S)
}
2022-12-15 00:51:34 +00:00
const fn apit_assoc_bound(_: impl IntoIterator<Item: [const] T> + [const] Destruct) {}
2022-12-15 00:51:34 +00:00
fn main() {}