summaryrefslogtreecommitdiff
path: root/test/files/run/t7533.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t7533.scala')
-rw-r--r--test/files/run/t7533.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t7533.scala b/test/files/run/t7533.scala
index 46d0b3b02e..c7bd8e8d43 100644
--- a/test/files/run/t7533.scala
+++ b/test/files/run/t7533.scala
@@ -29,7 +29,7 @@ object Test extends App {
println(s"=======$sym=======")
def printAbstract(sym: Symbol) = println(s"$sym => ${sym.isAbstract}")
printAbstract(sym)
- sym.typeSignature.declarations.sorted.foreach(printAbstract)
+ sym.info.decls.sorted.foreach(printAbstract)
}
test[C]
test[T]