diff options
Diffstat (limited to 'src/ast/path.cpp')
-rw-r--r-- | src/ast/path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/path.cpp b/src/ast/path.cpp index f02f48fb..da86b066 100644 --- a/src/ast/path.cpp +++ b/src/ast/path.cpp @@ -14,7 +14,7 @@ namespace AST { // --- AST::PathBinding ::std::ostream& operator<<(::std::ostream& os, const PathBinding& x) { TU_MATCH(PathBinding, (x), (i), - (Unbound, os << "UNBOUND"; ), + (Unbound, os << "_"; ), (Crate , os << "Crate"; ), (Module, os << "Module"; ), (Trait, os << "Trait"; ), |