gccrs: ast: Dump inferred type
authorJakub Dupak <dev@jakubdupak.com>
Sun, 6 Nov 2022 20:29:56 +0000 (21:29 +0100)
committerArthur Cohen <arthur.cohen@embecosm.com>
Tue, 21 Feb 2023 11:36:47 +0000 (12:36 +0100)
gcc/rust/ChangeLog:

* ast/rust-ast-dump.cc (Dump::visit): Add missing visitor.

Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
gcc/rust/ast/rust-ast-dump.cc

index 9393f95..a37d5ad 100644 (file)
@@ -1661,6 +1661,9 @@ Dump::visit (SliceType &type)
 void
 Dump::visit (InferredType &)
 {
+  // Syntax:
+  //    _
+
   stream << "_";
 }