aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/i50-volatile.scala
Commit message (Collapse)AuthorAgeFilesLines
* Adapt neg tests to new neg tests checksVladimirNik2016-02-181-2/+2
|
* Negtests with // error commentsvsalvis2016-02-181-5/+5
|
* Fix tests to survive wellformedness checksMartin Odersky2015-10-221-1/+1
|
* Fix of #50 - volatileMartin Odersky2014-03-091-0/+25
Volatile checking needs to take all intersections into account; previously these could be discarded through needsChecking. Plus several refactorings and additions. 1) Module vals now have Final and Stable flags set 2) All logic around isVolatile is now in TypeOps; some of it was moved from Types. 3) Added stability checking to Select and SelectFromType typings. Todo: We should find a better name for isVolatile. Maybe define the negation instead under the name "isRealizable"?.