summaryrefslogtreecommitdiff
path: root/test/files/run/t7008-scala-defined.check
Commit message (Collapse)AuthorAgeFilesLines
* reflecting @throws defined in Scala codeEugene Burmako2013-02-041-0/+7
As per Jason's comment: How are Scala classes containing @throws annots treated? I can't figure out whether we pickle the annotation in addition to adding the exception to the signature. If we do, might we end up with duplicate annotations in runtime reflection? This warrants a test. See the context of the discussion here: https://github.com/scala/scala/pull/2040/files#r2874769. No, we won't end up with duplicates, because classes defined in Scala are loaded in a different completer. But I'll add a test - you can never have too many of those.