Skip to content

Commit 583b334

Browse files
committed
Fix test
1 parent e96b3af commit 583b334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/ShowClassTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class ShowClassTests extends DottyTest {
6565
debug_println(s"blacklisted package: $path")
6666
else {
6767
for (
68-
sym <- pkg.info.decls if sym.owner == pkg.moduleClass && !(sym.name contains '$')
68+
sym <- pkg.info.decls if sym.owner == pkg.moduleClass && !(sym.name.toString contains '$')
6969
) {
7070
debug_println(s"showing $sym in ${pkg.fullName}")
7171
if (sym is PackageVal) showPackage(sym.asTerm)

0 commit comments

Comments
 (0)