diff options
author | John Hodge <tpg@mutabah.net> | 2016-09-12 16:39:51 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-09-12 16:39:51 +0800 |
commit | d3ec5f1180701cd96b6ff8b7aa762a1ec5313b1a (patch) | |
tree | a36dbf7434ba9582dc19396b7862cc8c1db23f9e /src | |
parent | b254e34cc237eb331ed6b068ed57f1c89b28e347 (diff) | |
download | mrust-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.cpp | 2 |
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); |