mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
e0a60f0740
This reverts commitcb9467515b
, reversing changes made to57781b24c5
.
23 lines
405 B
Rust
23 lines
405 B
Rust
// check-pass
|
|
#![feature(type_alias_impl_trait)]
|
|
|
|
fn opaque<'a: 'a>() -> impl Sized {}
|
|
fn assert_static<T: 'static>(_: T) {}
|
|
|
|
fn test_closure() {
|
|
let closure = |_| {
|
|
assert_static(opaque());
|
|
};
|
|
closure(&opaque());
|
|
}
|
|
|
|
type Opaque2 = impl Sized;
|
|
type Opaque<'a> = Opaque2;
|
|
fn define<'a>() -> Opaque<'a> {}
|
|
|
|
fn test_tait(_: &Opaque<'_>) {
|
|
None::<&'static Opaque<'_>>;
|
|
}
|
|
|
|
fn main() {}
|