aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/rust
diff options
context:
space:
mode:
Diffstat (limited to 'tests/indent/rust')
-rw-r--r--tests/indent/rust/macro.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/indent/rust/macro.rs b/tests/indent/rust/macro.rs
index 0900f4c12..e42cf1371 100644
--- a/tests/indent/rust/macro.rs
+++ b/tests/indent/rust/macro.rs
@@ -1,10 +1,10 @@
macro_rules! foo {
($a:ident, $b:ident, $c:ident) => {
- struct $a;
- struct $b;
+ struct a { value: $a };
+ struct b { value: $b };
};
($a:ident) => {
- struct $a;
+ struct a { value: $a };
};
}