rust/tests/ui/rfcs/rfc-2632-const-trait-impl/const-closure-trait-method-fail.rs

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

21 lines
310 B
Rust
Raw Normal View History

2023-04-16 06:12:37 -05:00
// known-bug: #110395
#![feature(const_trait_impl)]
#[const_trait]
trait Tr {
fn a(self) -> i32;
}
impl Tr for () {
fn a(self) -> i32 { 42 }
}
const fn need_const_closure<T: ~const FnOnce(()) -> i32>(x: T) -> i32 {
x(())
}
const _: () = assert!(need_const_closure(Tr::a) == 42);
fn main() {}