blob: 3fbfe8c950daa88b247b128ed54de49807609daa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//@ compile-flags: -Znext-solver
#![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() {}
|