mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
22 lines
450 B
Rust
22 lines
450 B
Rust
// Check that we don't reject non-escaping late-bound vars in the type of assoc const bindings.
|
|
// There's no reason why we should disallow them.
|
|
//
|
|
//@ check-pass
|
|
|
|
#![feature(associated_const_equality)]
|
|
|
|
trait Trait<T> {
|
|
const K: T;
|
|
}
|
|
|
|
fn take(
|
|
_: impl Trait<
|
|
<for<'a> fn(&'a str) -> &'a str as Discard>::Out,
|
|
K = { () }
|
|
>,
|
|
) {}
|
|
|
|
trait Discard { type Out; }
|
|
impl<T: ?Sized> Discard for T { type Out = (); }
|
|
|
|
fn main() {}
|