blob: 192b158189637e68a8575f967fa537dd18dc10a1 [file] [log] [blame]
pub struct Entry<'a, K, V> {
k: &'a mut K,
v: V,
}
pub fn entry<'a, K, V>() -> Entry<'a K, V> {
// ^ missing comma
//~^^ ERROR expected one of `,` or `>`, found `K`
unimplemented!()
}