mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-13 15:33:53 +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!()
|
|
}
|