summaryrefslogtreecommitdiff
path: root/test/files/specialized/SI-5005.scala
Commit message (Collapse)AuthorAgeFilesLines
* Add the first iteration of the `util.hashing` package.Aleksandar Prokopec2012-06-071-27/+0
| | | | | | | | | | | | | | | | | Move `MurmurHash3` to `util.hashing`. Make the `class` private and retain a public companion `object`, and put the `MurmurHash3.Hashing` implementations for various types in the companion. Add a method which composes `ByteswapHashing` with some other hashing. Rename `hashOf` to `hash`. Fix chi-square test in a test-case. Review by @jsuereth. Moved a failing test that seems to use some other library version to pending.
* Prevent extaneous output in SI-5005Vlad Ureche2012-02-161-1/+5
|
* Added test files to verify previous commit.Erik Osheim2012-02-151-0/+23
Tests scalac -optimize -Xprint:specialize -Ylog:inliner output to verify that final/@inline + specialization are being handled correctly (that is, the original class' specialized methods should not be final/@inline, but its specialized subclass' should be). This test was written by Vlad Ureche based on the bug report in SI-5005.