diff options
| author | Eric Huss <eric@huss.org> | 2019-05-08 17:45:39 -0700 | 
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2019-05-08 17:45:39 -0700 | 
| commit | 0fca4dd2d30a2044af454cf55211e67cf76f333c (patch) | |
| tree | 6a41d4f9ce2fba536d02325fff70076f00910a8d /test-suite/tests/tables-last.rs | |
| parent | 6c162e6562c3e432bf04c82a3d1d789d80761a86 (diff) | |
| download | milf-rs-0fca4dd2d30a2044af454cf55211e67cf76f333c.tar.gz milf-rs-0fca4dd2d30a2044af454cf55211e67cf76f333c.zip | |
cargo fmt
Diffstat (limited to 'test-suite/tests/tables-last.rs')
| -rw-r--r-- | test-suite/tests/tables-last.rs | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/test-suite/tests/tables-last.rs b/test-suite/tests/tables-last.rs index d05c8f0..b885a42 100644 --- a/test-suite/tests/tables-last.rs +++ b/test-suite/tests/tables-last.rs @@ -19,7 +19,9 @@ enum Value {  #[test]  fn always_works() { -    let mut a = A { vals: HashMap::new() }; +    let mut a = A { +        vals: HashMap::new(), +    };      a.vals.insert("foo", Value::Int(0));      let mut sub = HashMap::new(); |