summaryrefslogtreecommitdiff
path: root/test/files/neg/t7605-deprecation.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-7961 Fix false positive procedure warningsSimon Ochsenreither2013-11-141-6/+9
| | | | | | | Two issues are fixed in this commit: - `def foo: Unit` was detected as missing a return type - The warning was emitted for constructors, but `def this(...): Unit = ...` is not valid Scala syntax
* SI-7605 Deprecate procedure syntaxSimon Ochsenreither2013-10-241-0/+12
This commit covers three cases: - constructor definitions (def this {...}) - concrete method definitions (def foo {...}) - abstract method declarations (def foo) The deprecation is currently hidden behind -Xfuture pending IDE support for migrating users from procedures to methods.