aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/java-interop
Commit message (Collapse)AuthorAgeFilesLines
* Fix partest compilation of java-interop tests by moving themGuillaume Martres2016-11-2275-356/+0
| | | | | | | | | | Previously, the tests where all in tests/pos/java-interop which means that partest would try to run them as one single test, this failed because some of these tests define classes with the same name. We could fix this by putting them all in separate packages but for now it's simple to move them to tests/pos-java-interop (they will still be run individually as they should thanks to the `java_all` test defined in tests.scala)
* Fix #1576: Parameters of Java annotations should be publicMartin Odersky2016-10-132-0/+8
| | | | | Parameters of annotation classes parsed by the Java parser should have public val parameters. Otherwise they cannot be accessed as fields.
* Move java tests relying on type parameters to pendingGuillaume Martres2016-07-274-44/+0
| | | | | | | Currently, the classfiles emitted by dotty do not contain the type parameters information that javac relies on. Fixing this is tracked by #1303.
* pos/java-interop/volatile: Fix compilation with javacGuillaume Martres2016-07-271-0/+0
| | | | javac wants the public class name to match the filename.
* Address reviewer commentsMartin Odersky2015-10-301-0/+11
|
* Set position on annotations parsed from JavaGuillaume Martres2015-10-291-0/+3
| | | | Fix a crash in Typer#assertPositioned
* Replace tabs with 4 spaces in Dotty tests.Dmitry Petrashko2015-04-093-1/+1
|
* Moving java tests to posDmitry Petrashko2014-11-2275-0/+378