summaryrefslogtreecommitdiff
path: root/test/files/neg/t3692.check
Commit message (Collapse)AuthorAgeFilesLines
* GroundTypeTag => ConcreteTypeTagEugene Burmako2012-04-121-2/+2
|
* Next generation of macrosEugene Burmako2012-04-121-4/+11
| | | | | | | | | | | | | | | | | | | | | | Implements SIP 16: Self-cleaning macros: http://bit.ly/wjjXTZ Features: * Macro defs * Reification * Type tags * Manifests aliased to type tags * Extended reflection API * Several hundred tests * 1111 changed files Not yet implemented: * Reification of refined types * Expr.value splicing * Named and default macro expansions * Intricacies of interaction between macros and implicits * Emission of debug information for macros (compliant with JSR-45) Dedicated to Yuri Alekseyevich Gagarin
* Pattern matching on Array types, working for re...Paul Phillips2010-10-041-11/+1
| | | | | | | | | | | | | | | | | Pattern matching on Array types, working for reals. def f[T](a: Array[T]) = a match { case x: Array[Int] => x(0) case x: Array[Double] => 2 // etc. } I'd also like to thank "instantiateTypeVar" for displacing the mechanical spiders and giant squid beings which used to fill my nightmares. Now that I know true horror, I welcome the squid. Closes #2755, review by odersky.
* closes #3692: make instantiateTypeVar more care...Adriaan Moors2010-09-141-0/+14
closes #3692: make instantiateTypeVar more careful so it does not change T's info to >: T <: T. review by odersky