about summary refs log tree commit diff
path: root/src/test/pretty/vec-comments.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-01-30 12:14:40 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-01-30 13:27:02 -0800
commit188d7c0bc36e69b99f6bdefd613027e53fa8b2d0 (patch)
tree5605bccb8c49ba1baa92cc2132778403d16e58ce /src/test/pretty/vec-comments.rs
parent4c25687c2bf8d83f1e26bd6aad6d2eb807c5b254 (diff)
parent7f64fe4e27555c256cb228feb05d4181a2287125 (diff)
downloadrust-188d7c0bc36e69b99f6bdefd613027e53fa8b2d0.tar.gz
rust-188d7c0bc36e69b99f6bdefd613027e53fa8b2d0.zip
rollup merge of #21631: tbu-/isize_police
Conflicts:
	src/libcoretest/iter.rs
Diffstat (limited to 'src/test/pretty/vec-comments.rs')
-rw-r--r--src/test/pretty/vec-comments.rs24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/test/pretty/vec-comments.rs b/src/test/pretty/vec-comments.rs
index 401c63efbc4..dc2dae1044d 100644
--- a/src/test/pretty/vec-comments.rs
+++ b/src/test/pretty/vec-comments.rs
@@ -15,25 +15,25 @@ fn main() {
     let _v1 =
         [
          // Comment
-         0i,
+         0,
          // Comment
-         1i,
+         1,
          // Comment
-         2i];
+         2];
     let _v2 =
-        [0i, // Comment
-         1i, // Comment
-         2i]; // Comment
+        [0, // Comment
+         1, // Comment
+         2]; // Comment
     let _v3 =
         [
          /* Comment */
-         0i,
+         0,
          /* Comment */
-         1i,
+         1,
          /* Comment */
-         2i];
+         2];
     let _v4 =
-        [0i, /* Comment */
-         1i, /* Comment */
-         2i]; /* Comment */
+        [0, /* Comment */
+         1, /* Comment */
+         2]; /* Comment */
 }