1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

Fix unused variable warning when developing using a nightly toolchain ()

This commit is contained in:
Jonas Platte 2022-11-10 12:41:16 +01:00 committed by GitHub
parent 74bbe80f8a
commit c3fa0b2a3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -722,7 +722,7 @@ fn run_ui_tests(directory: &str) {
}
#[rustversion::not(stable)]
fn go(directory: &str) {}
fn go(_directory: &str) {}
go(directory);
}