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

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);
}