We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15be2fc commit cdd806dCopy full SHA for cdd806d
src/comp/util/ppaux.rs
@@ -95,6 +95,7 @@ fn ty_to_str(cx: ctxt, typ: t) -> str {
95
ty_str. { "str" }
96
ty_box(tm) { "@" + mt_to_str(cx, tm) }
97
ty_uniq(tm) { "~" + mt_to_str(cx, tm) }
98
+ ty_ptr(tm) { "*" + mt_to_str(cx, tm) }
99
ty_vec(tm) { "[" + mt_to_str(cx, tm) + "]" }
100
ty_type. { "type" }
101
ty_rec(elems) {
0 commit comments