about summary refs log tree commit diff
path: root/tests/source/tuple.rs
diff options
context:
space:
mode:
authortopecongiro <seuchida@gmail.com>2017-05-30 20:40:05 +0900
committertopecongiro <seuchida@gmail.com>2017-05-30 20:40:05 +0900
commitb63e3aaa83e21ab78254d6bf8a1eb58b2bcccce2 (patch)
treeb49e8f7c0ef4845f166ce0c5bc1cc37b71d88146 /tests/source/tuple.rs
parentb79094262f9737b3fd0379fdd2cb0fc6e23008ad (diff)
Put a space between nested tuple field
Diffstat (limited to 'tests/source/tuple.rs')
-rw-r--r--tests/source/tuple.rs3
1 files changed, 3 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() {