diff options
| author | topecongiro <seuchida@gmail.com> | 2017-05-30 20:40:05 +0900 |
|---|---|---|
| committer | topecongiro <seuchida@gmail.com> | 2017-05-30 20:40:05 +0900 |
| commit | b63e3aaa83e21ab78254d6bf8a1eb58b2bcccce2 (patch) | |
| tree | b49e8f7c0ef4845f166ce0c5bc1cc37b71d88146 /tests | |
| parent | b79094262f9737b3fd0379fdd2cb0fc6e23008ad (diff) | |
Put a space between nested tuple field
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/source/tuple.rs | 3 | ||||
| -rw-r--r-- | tests/target/tuple.rs | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/source/tuple.rs b/tests/source/tuple.rs index d47777734bb..fcfcff3a39b 100644 --- a/tests/source/tuple.rs +++ b/tests/source/tuple.rs @@ -12,6 +12,9 @@ fn foo() { let b = (// This is a comment b, // Comment b /* Trailing comment */); + + // #1063 + foo(x.0 .0); } fn a() { diff --git a/tests/target/tuple.rs b/tests/target/tuple.rs index 2d3b52da72a..16fc3df020f 100644 --- a/tests/target/tuple.rs +++ b/tests/target/tuple.rs @@ -12,6 +12,9 @@ fn foo() { let b = (// This is a comment b, // Comment b /* Trailing comment */); + + // #1063 + foo(x.0 .0); } fn a() { |
