mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 10:40:16 +00:00
17 lines
225 B
Rust
17 lines
225 B
Rust
fn main() {
|
|
f<'a,>
|
|
//~^ ERROR expected
|
|
//~| ERROR expected
|
|
}
|
|
|
|
fn bar(a: usize, b: usize) -> usize {
|
|
a + b
|
|
}
|
|
|
|
fn foo() {
|
|
let x = 1;
|
|
bar('y, x);
|
|
//~^ ERROR expected
|
|
//~| ERROR mismatched types
|
|
}
|