aboutsummaryrefslogtreecommitdiff
path: root/tests/tasty
Commit message (Collapse)AuthorAgeFilesLines
* Move tests/tasty/* to tests/pickling/*Guillaume Martres2017-03-112-11/+0
| | | | | These two directories were tested using the same flags, but tests/tasty compiled all of its files at once which is usually not what is intended.
* Don't set PureInterface when a default param is presentGuillaume Martres2017-03-081-0/+3
| | | | | | | | | | | The default param will be desugared into a method with a body, so setting PureInterface would be wrong. The enclosed test previously failed with a pickling difference, because the unpickler correctly decided to not set the PureInterface flag since it saw the default param method. This fixes the tasty_dotc_util which failed since the last commit because FreshNameCreator was now incorrectly recognized as a PureInterface.
* Add pickling/unpickling of stable modifierVladimirNik2015-11-271-0/+8
Pickling/unpickling of STABLE modifier allows to fix problem with unpickling of path-dependent types (#982)