aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/tests/macros.rs')
-rw-r--r--test-suite/tests/macros.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/test-suite/tests/macros.rs b/test-suite/tests/macros.rs
index 35bf186..20831a0 100644
--- a/test-suite/tests/macros.rs
+++ b/test-suite/tests/macros.rs
@@ -7,6 +7,8 @@ use std::f64;
macro_rules! table {
($($key:expr => $value:expr,)*) => {{
+ // https://github.com/rust-lang/rust/issues/60643
+ #[allow(unused_mut)]
let mut table = toml::value::Table::new();
$(
table.insert($key.to_string(), $value.into());
@@ -17,6 +19,8 @@ macro_rules! table {
macro_rules! array {
($($element:expr,)*) => {{
+ // https://github.com/rust-lang/rust/issues/60643
+ #[allow(unused_mut)]
let mut array = toml::value::Array::new();
$(
array.push($element.into());