summaryrefslogtreecommitdiff
path: root/test/files/neg/t6323a.check
Commit message (Collapse)AuthorAgeFilesLines
* silences t6323aEugene Burmako2013-02-111-0/+6
| | | | | | Tag materialization notices enabled with -Xlog-implicits are now echoes not printlns. Therefore, they go into stderr, not stdout, getting logged by partest and not spamming stdout of partest.
* better error when typetagging local classesEugene Burmako2012-11-121-1/+1
| | | | Inspired by https://issues.scala-lang.org/browse/SI-6649
* Normalized line endings.Paul Phillips2012-09-201-9/+9
| | | | | | This brings all the files into line with the .gitattributes settings, which should henceforth be automatically maintained by git.
* SI-6323 outlaws free types from TypeTagEugene Burmako2012-09-141-0/+9
Free types are no longer acceptable in normal type tags. Like type parameters or abstract type members they don't map on any real type, therefore I think this is a justified change. The main reason for doing is this is to prohibit people from using `typeOf` on local classes. Sure, the guard introduced in the previous commit will raise runtime errors about that, but this commit provides static checking. Those especially persistent might use `absTypeOf` and then try to play around with the weak type it returns, but that's advanced usage scenario, and I don't worry much about it. Bottom line: `typeOf` should just work. Things that work with additional effort should be explicitly marked as such.