typeinfo names aren't symbols but string constant contents
stored in compiler-generated typeinfo objects, but llvm-cxxfilt
can demangle these for Itanium names.
In the MSVC ABI, these are just a '.' followed by a mangled
type -- this means they don't start with '?' like all MS-mangled
symbols do.
Off topic: Do you know why the demangler uses its own StringView class instead of StringRef like the rest of llvm?
(Looks like it comes from libcxxabi via this commit: r327859)