-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from SethTisue/bump-scala-versions
be 2.12.0-RC2 compatible
- Loading branch information
Showing
11 changed files
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-J-XX:ReservedCodeCacheSize=256M | ||
-J-Xmx3072M |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
reporter/functional-tests/src/test/abstract-class-added-abstract-method-nok/v2/A.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
abstract class A { | ||
def foo: Unit | ||
} | ||
def foo(): Unit | ||
} |
2 changes: 1 addition & 1 deletion
2
...onal-tests/src/test/abstract-class-extending-new-trait-with-abstract-method-ok/v1/A.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
abstract class A { | ||
def foo: Unit | ||
def foo(): Unit | ||
} |
4 changes: 2 additions & 2 deletions
4
reporter/functional-tests/src/test/added-abstract-class-in-new-version-ok/v2/A.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
class A | ||
abstract class B { | ||
def foo: Unit | ||
} | ||
def foo(): Unit | ||
} |
6 changes: 3 additions & 3 deletions
6
reporter/functional-tests/src/test/added-trait-in-new-version-ok/v2/A.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
class A | ||
trait B { | ||
def foo: Unit | ||
def bar: Unit = () | ||
} | ||
def foo(): Unit | ||
def bar(): Unit = () | ||
} |
4 changes: 2 additions & 2 deletions
4
reporter/functional-tests/src/test/class-added-abstract-method-in-new-version-nok/v2/A.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
abstract class A { | ||
def foo: Unit | ||
} | ||
def foo(): Unit | ||
} |
1 change: 0 additions & 1 deletion
1
...c/test/class-method-abstract-override-of-concrete-supertrait-method-nok/problems-2.12.txt
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
reporter/functional-tests/src/test/trait-added-abstract-method-nok/v2/A.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
trait A { | ||
def foo: Unit | ||
} | ||
def foo(): Unit | ||
} |
2 changes: 2 additions & 0 deletions
2
...ional-tests/src/test/trait-extending-new-trait-with-concrete-method-nok/v1/Foldable.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import scala.language.higherKinds | ||
|
||
trait Foldable[F[_]]{ | ||
def foldLeft[A, B](fa: F[A], z: B)(f: (B, A) => B): B | ||
} |
2 changes: 2 additions & 0 deletions
2
...ional-tests/src/test/trait-extending-new-trait-with-concrete-method-nok/v2/Foldable.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters