Skip to content

Commit bceea49

Browse files
committed
test
1 parent 60a6206 commit bceea49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/symbol-check/src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ fn verify_no_duplicates(path: impl AsRef<Path>) {
131131

132132
for_each_symbol(path, |sym, member| {
133133
// Only check defined globals, exclude wasm file symbols
134-
if !sym.is_global() || sym.is_undefined() || sym.kind() == SymbolKind::File {
134+
if !sym.is_global() || sym.is_undefined()
135+
// || sym.kind() == SymbolKind::File
136+
{
135137
return;
136138
}
137139

0 commit comments

Comments
 (0)