summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-09-12 16:39:51 +0800
committerJohn Hodge <tpg@mutabah.net>2016-09-12 16:39:51 +0800
commitd3ec5f1180701cd96b6ff8b7aa762a1ec5313b1a (patch)
treea36dbf7434ba9582dc19396b7862cc8c1db23f9e /src
parentb254e34cc237eb331ed6b068ed57f1c89b28e347 (diff)
downloadmrust-d3ec5f1180701cd96b6ff8b7aa762a1ec5313b1a.tar.gz
Resolve UFCS - Make a missing method defintion an error again
Diffstat (limited to 'src')
-rw-r--r--src/hir_conv/resolve_ufcs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir_conv/resolve_ufcs.cpp b/src/hir_conv/resolve_ufcs.cpp
index 4da656bf..cc136116 100644
--- a/src/hir_conv/resolve_ufcs.cpp
+++ b/src/hir_conv/resolve_ufcs.cpp
@@ -387,7 +387,7 @@ namespace {
}
// Couldn't find it
- //ERROR(sp, E0000, "Failed to find impl with '" << e.item << "' for " << *e.type << " (in " << p << ")");
+ ERROR(sp, E0000, "Failed to find impl with '" << e.item << "' for " << *e.type << " (in " << p << ")");
)
else {
::HIR::Visitor::visit_path(p, pc);