Skip to content

Commit 8be6cb9

Browse files
committed
---
yaml --- r: 3165 b: refs/heads/master c: 9210afc h: refs/heads/master i: 3163: f1e106a v: v3
1 parent c123db9 commit 8be6cb9

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 68887fd45bad2a7e39a97728baeb3a6688845184
2+
refs/heads/master: 9210afc8a5360ac859d21a8db6e0ef9b0ba7debb

trunk/src/comp/pretty/pprust.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,12 @@ fn print_type(&ps s, &ast::ty ty) {
201201
print_mt(s, mt);
202202
word(s.s, "]");
203203
}
204+
case (ast::ty_ivec(?mt)) {
205+
print_type(s, *mt.ty);
206+
word(s.s, "[");
207+
print_mutability(s, mt.mut);
208+
word(s.s, "]");
209+
}
204210
case (ast::ty_port(?t)) {
205211
word(s.s, "port[");
206212
print_type(s, *t);

0 commit comments

Comments
 (0)