mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
40 lines
735 B
Rust
40 lines
735 B
Rust
// known-bug: #103507
|
|
// failure-status: 101
|
|
// normalize-stderr-test "note: .*\n\n" -> ""
|
|
// normalize-stderr-test "thread 'rustc' panicked.*\n" -> ""
|
|
// rustc-env:RUST_BACKTRACE=0
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
#![feature(const_trait_impl)]
|
|
#![feature(const_refs_to_cell)]
|
|
#![feature(inline_const)]
|
|
|
|
use std::marker::Destruct;
|
|
|
|
trait T {
|
|
type Item;
|
|
}
|
|
|
|
type Alias<'a> = impl T<Item = &'a ()>;
|
|
|
|
struct S;
|
|
impl<'a> T for &'a S {
|
|
type Item = &'a ();
|
|
}
|
|
|
|
const fn filter_positive<'a>() -> &'a Alias<'a> {
|
|
&&S
|
|
}
|
|
|
|
const fn with_positive<F: ~const for<'a> Fn(&'a Alias<'a>) + ~const Destruct>(fun: F) {
|
|
fun(filter_positive());
|
|
}
|
|
|
|
const fn foo(_: &Alias<'_>) {}
|
|
|
|
const BAR: () = {
|
|
with_positive(foo);
|
|
};
|
|
|
|
fn main() {}
|