summaryrefslogtreecommitdiff
path: root/src/ast/path.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/path.cpp')
-rw-r--r--src/ast/path.cpp2
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"; ),