gccrs: ast: Dump never type

gcc/rust/ChangeLog:

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

Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
This commit is contained in:
Jakub Dupak
2022-11-06 21:23:12 +01:00
committed by Arthur Cohen
parent 971d16cbfa
commit c4c859bff8

View File

@@ -1585,7 +1585,12 @@ Dump::visit (TupleType &)
void
Dump::visit (NeverType &)
{}
{
// Syntax:
// !
stream << '!';
}
void
Dump::visit (RawPointerType &type)