mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 05:01:11 +00:00
11 lines
224 B
Rust
11 lines
224 B
Rust
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!()
|
|
}
|