diff options
Diffstat (limited to 'src/ast/ast.cpp')
-rw-r--r-- | src/ast/ast.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/ast.cpp b/src/ast/ast.cpp index 2fe36225..aa8a17e0 100644 --- a/src/ast/ast.cpp +++ b/src/ast/ast.cpp @@ -295,6 +295,7 @@ bool Crate::check_impls_wildcard(const Path& trait, const TypeRef& type) const for( auto implptr : m_impl_index )
{
Impl& impl = *implptr;
+ DEBUG("- " << impl.def());
::std::vector<TypeRef> out_params;
if( impl.def().matches(out_params, AST::Path(), type) )
{
|