summaryrefslogtreecommitdiff
path: root/test/files/run/t1500.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1500.scala')
-rw-r--r--test/files/run/t1500.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t1500.scala b/test/files/run/t1500.scala
index a2f4192130..58adea221c 100644
--- a/test/files/run/t1500.scala
+++ b/test/files/run/t1500.scala
@@ -29,7 +29,7 @@ object Test {
/** Check annotations to decide whether tpe1 <:< tpe2 */
def annotationsConform(tpe1: Type, tpe2: Type): Boolean = {
- tpe1.attributes.forall(a1 => tpe2.attributes.forall(a2 => a1.atp <:< a2.atp))
+ tpe1.annotations.forall(a1 => tpe2.annotations.forall(a2 => a1.atp <:< a2.atp))
}
}