mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 09:40:02 +00:00
7 lines
205 B
Rust
7 lines
205 B
Rust
#[derive(rustfmt::skip)] //~ ERROR expected derive macro, found tool attribute `rustfmt::skip`
|
|
struct S;
|
|
|
|
fn main() {
|
|
rustfmt::skip!(); //~ ERROR expected macro, found tool attribute `rustfmt::skip`
|
|
}
|