We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c123db9 commit 8be6cb9Copy full SHA for 8be6cb9
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 68887fd45bad2a7e39a97728baeb3a6688845184
+refs/heads/master: 9210afc8a5360ac859d21a8db6e0ef9b0ba7debb
trunk/src/comp/pretty/pprust.rs
@@ -201,6 +201,12 @@ fn print_type(&ps s, &ast::ty ty) {
201
print_mt(s, mt);
202
word(s.s, "]");
203
}
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
+ }
210
case (ast::ty_port(?t)) {
211
word(s.s, "port[");
212
print_type(s, *t);
0 commit comments