diff options
author | Jakub Dupak <dev@jakubdupak.com> | 2022-11-06 21:29:56 +0100 |
---|---|---|
committer | Jakub Dupak <dev@jakubdupak.com> | 2022-11-16 16:26:48 +0100 |
commit | 8c239b1428ee4a36530ecbbd5bf36eb9333e9697 (patch) | |
tree | 748dbc2ff368a4f40c0663d7e3819221e3841b16 | |
parent | 9b6d82061208796389e064cbe6707a3787a264fe (diff) | |
download | gcc-8c239b1428ee4a36530ecbbd5bf36eb9333e9697.zip gcc-8c239b1428ee4a36530ecbbd5bf36eb9333e9697.tar.gz gcc-8c239b1428ee4a36530ecbbd5bf36eb9333e9697.tar.bz2 |
ast: Dump inferred type
Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
-rw-r--r-- | gcc/rust/ast/rust-ast-dump.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rust/ast/rust-ast-dump.cc b/gcc/rust/ast/rust-ast-dump.cc index 9393f95..a37d5ad 100644 --- a/gcc/rust/ast/rust-ast-dump.cc +++ b/gcc/rust/ast/rust-ast-dump.cc @@ -1661,6 +1661,9 @@ Dump::visit (SliceType &type) void Dump::visit (InferredType &) { + // Syntax: + // _ + stream << "_"; } |