Files
rust/tests/ui/traits/const-traits/reservation-impl-ice.rs

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

14 lines
358 B
Rust
Raw Normal View History

//@ compile-flags: -Znext-solver
2025-08-11 19:36:20 -04:00
#![feature(const_convert, never_type, const_trait_impl)]
const fn impls_from<T: [const] From<!>>() {}
const fn foo() {
// This previously ICE'd when encountering the reservation impl
// from the standard library.
impls_from::<()>();
//~^ ERROR the trait bound `(): From<!>` is not satisfied
}
fn main() {}