mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +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() {}
|