mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
538 B
Rust
19 lines
538 B
Rust
use std::collections::hash_map::{Keys, HashMap};
|
|
use std::marker::PhantomData;
|
|
|
|
trait MapAssertion<'a, K, V, R> {
|
|
fn key_set(&self) -> Subject<Keys<K, V>, (), R>;
|
|
}
|
|
|
|
struct Subject<'a, T, V, R>(PhantomData<(&'a T, V, R)>);
|
|
|
|
impl<'a, K, V, R> MapAssertion<'a, K, V, R> for Subject<'a, HashMap<K, V>, (), R>
|
|
{
|
|
fn key_set(&self) -> Subject<'a, Keys<K, V>, (), R> {
|
|
//~^ ERROR cannot infer an appropriate lifetime for lifetime parameter '_ in generic type due to conflicting requirements
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|