Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lint
/
expect-unused-imports.rs
blob: fc5b1bf2a0fe62ee91d03c70b08742d9b27f6910 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
deny
(
unused_imports
)]
#![
deny
(
unfulfilled_lint_expectations
)]
#[
expect
(
unused_imports
)]
use
std
::{
io
,
fs
};
fn
main
()
{}