mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
10 lines
141 B
Rust
10 lines
141 B
Rust
//@ check-pass
|
|
|
|
#![deny(unused_imports)]
|
|
#![deny(unfulfilled_lint_expectations)]
|
|
|
|
#[expect(unused_imports)]
|
|
use std::{io, fs};
|
|
|
|
fn main() {}
|