blob: 507447923915b843507704d5c892d69e5dd747bc (
plain)
1
2
3
4
5
6
7
8
9
10
|
pub struct Entry<'a, K, V> {
k: &'a mut K,
v: V,
}
pub fn entry<'a, K, V>() -> Entry<'a K, V> {
// ^ missing comma
//~^^ expected one of `,` or `>`, found `K`
unimplemented!()
}
|