summaryrefslogtreecommitdiff
path: root/test/files/run/t4700.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-4700 Make infix notation default for symbolic types.allisonhb2016-12-141-15/+12
| | | | Add ability to disable this via the @showAsInfix annotation.
* SI-4700 Show infix types with as few parentheses as needed.allisonhb2016-12-131-0/+15
|
* SI-4700 Add `@infix` annotation for type printingVlad Ureche2016-09-191-0/+32
``` scala> import scala.annotation.infix import scala.annotation.infix scala> @infix class &&[T, U] defined class $amp$amp scala> def foo: Int && Boolean = ??? foo: Int && Boolean ```