2020-04-17 04:33:42 +00:00
|
|
|
#![allow(bare_trait_objects)]
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::cell::RefCell;
|
|
|
|
|
|
|
|
pub union Foo<'t, 'k> {
|
|
|
|
i: &'t i64,
|
|
|
|
f: &'k f64,
|
|
|
|
}
|
|
|
|
trait Bar<'t, 'k> {}
|
|
|
|
|
|
|
|
pub union Qux<'t, 'k, I> {
|
|
|
|
i: &'t I,
|
|
|
|
f: &'k I,
|
|
|
|
}
|
|
|
|
trait Tar<'t, 'k, I> {}
|
|
|
|
|
|
|
|
thread_local! {
|
|
|
|
static a: RefCell<HashMap<i32, Vec<Vec<Foo>>>> = RefCell::new(HashMap::new());
|
2021-02-18 20:01:44 +00:00
|
|
|
//~^ ERROR missing lifetime specifiers
|
|
|
|
//~| ERROR missing lifetime specifiers
|
2020-04-17 04:33:42 +00:00
|
|
|
}
|
|
|
|
thread_local! {
|
|
|
|
static b: RefCell<HashMap<i32, Vec<Vec<&Bar>>>> = RefCell::new(HashMap::new());
|
2022-06-05 16:33:09 +00:00
|
|
|
//~^ ERROR missing lifetime specifiers
|
|
|
|
//~| ERROR missing lifetime specifiers
|
2020-04-17 04:33:42 +00:00
|
|
|
}
|
|
|
|
thread_local! {
|
|
|
|
static c: RefCell<HashMap<i32, Vec<Vec<Qux<i32>>>>> = RefCell::new(HashMap::new());
|
2022-06-05 16:33:09 +00:00
|
|
|
//~^ ERROR missing lifetime specifiers
|
|
|
|
//~| ERROR missing lifetime specifiers
|
2020-04-17 04:33:42 +00:00
|
|
|
}
|
|
|
|
thread_local! {
|
|
|
|
static d: RefCell<HashMap<i32, Vec<Vec<&Tar<i32>>>>> = RefCell::new(HashMap::new());
|
2022-06-05 16:33:09 +00:00
|
|
|
//~^ ERROR missing lifetime specifiers
|
|
|
|
//~| ERROR missing lifetime specifiers
|
2020-04-17 04:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
thread_local! {
|
|
|
|
static e: RefCell<HashMap<i32, Vec<Vec<Qux<'static, i32>>>>> = RefCell::new(HashMap::new());
|
2023-02-23 17:27:06 +00:00
|
|
|
//~^ ERROR union takes 2 lifetime arguments but 1 lifetime argument
|
|
|
|
//~| ERROR union takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR union takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR union takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR union takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2020-04-17 04:33:42 +00:00
|
|
|
}
|
|
|
|
thread_local! {
|
|
|
|
static f: RefCell<HashMap<i32, Vec<Vec<&Tar<'static, i32>>>>> = RefCell::new(HashMap::new());
|
2023-02-23 17:27:06 +00:00
|
|
|
//~^ ERROR trait takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR trait takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR trait takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR trait takes 2 lifetime arguments but 1 lifetime argument was supplied
|
|
|
|
//~| ERROR trait takes 2 lifetime arguments but 1 lifetime argument was supplied
|
2021-02-18 20:01:44 +00:00
|
|
|
//~| ERROR missing lifetime
|
|
|
|
//~| ERROR missing lifetime
|
2020-04-17 04:33:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|