summaryrefslogtreecommitdiff
path: root/test/files/neg/t7388.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-04-18 23:38:15 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-04-18 23:44:11 +0200
commit3e27fec3cf44bcc523fea6bac39ac9b99b438393 (patch)
tree8f766d06992528b613171bd1d52d2f3e9de38200 /test/files/neg/t7388.scala
parent4525e9223a2fb7c1ec3014073566b559e5839805 (diff)
downloadscala-3e27fec3cf44bcc523fea6bac39ac9b99b438393.tar.gz
scala-3e27fec3cf44bcc523fea6bac39ac9b99b438393.tar.bz2
scala-3e27fec3cf44bcc523fea6bac39ac9b99b438393.zip
SI-7388 Be more robust against cycles in error symbol creation.
`Symbol#toString` was triggering `CyclicReferenceError` (specifically, `accurateKindString` which calls `owner.primaryConstructor`.) The `toString` output is used when creating an error symbol to assign to the tree after an error (in this case, a non-existent access qualifier.) This commit catches the error, and falls back to just using the symbol's name.
Diffstat (limited to 'test/files/neg/t7388.scala')
-rw-r--r--test/files/neg/t7388.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/files/neg/t7388.scala b/test/files/neg/t7388.scala
new file mode 100644
index 0000000000..9ce9ea11b3
--- /dev/null
+++ b/test/files/neg/t7388.scala
@@ -0,0 +1 @@
+class Test private[doesnotexist]()