diff options
Diffstat (limited to 'src/expand/mod.cpp')
-rw-r--r-- | src/expand/mod.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expand/mod.cpp b/src/expand/mod.cpp index cb7667f8..5c733e2b 100644 --- a/src/expand/mod.cpp +++ b/src/expand/mod.cpp @@ -108,7 +108,7 @@ void Expand_Mod(bool is_early, ::AST::Crate& crate, ::AST::Path modpath, ::AST:: DEBUG("Items"); for( auto& i : mod.items() ) { - DEBUG("- " << i.name); + DEBUG("- " << i.name << " :: " << i.data.attrs); ::AST::Path path = modpath + i.name; Expand_Attrs(i.data.attrs, (is_early ? AttrStage::EarlyPre : AttrStage::LatePre), crate, path, mod, i.data); |