mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-14 00:05:46 +00:00
17 lines
293 B
Rust
17 lines
293 B
Rust
#[cfg(FALSE)]
|
|
impl S {
|
|
fn f(#[attr]) {} //~ ERROR expected parameter name, found `)`
|
|
}
|
|
|
|
#[cfg(FALSE)]
|
|
impl T for S {
|
|
fn f(#[attr]) {} //~ ERROR expected parameter name, found `)`
|
|
}
|
|
|
|
#[cfg(FALSE)]
|
|
trait T {
|
|
fn f(#[attr]); //~ ERROR expected argument name, found `)`
|
|
}
|
|
|
|
fn main() {}
|