mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
348 B
Rust
22 lines
348 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
use std::rc::Rc;
|
|
|
|
fn test1() -> Rc<dyn for<'a> Fn(&'a usize) + 'static> {
|
|
if let Some(_) = Some(1) {
|
|
loop{}
|
|
} else {
|
|
loop{}
|
|
}
|
|
}
|
|
|
|
fn test2() -> *mut (dyn for<'a> Fn(&'a usize) + 'static) {
|
|
if let Some(_) = Some(1) {
|
|
loop{}
|
|
} else {
|
|
loop{}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|