mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-03 16:38:24 +00:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
fn f(
|
|
x: u8,
|
|
y: u8,
|
|
) {}
|
|
//~^^ ERROR: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `y`
|
|
|
|
fn main() {}
|