-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Third batch of neg -> warn test changes
- Loading branch information
Showing
13 changed files
with
58 additions
and
56 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
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
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
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
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
-- Error: tests/neg-macros/i9570.scala:15:21 --------------------------------------------------------------------------- | ||
15 | case '{HCons(_,$t)} => // error | ||
| ^ | ||
| Use of `_` for lambda in quoted pattern. Use explicit lambda instead or use `$_` to match any term. |
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
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,4 @@ | ||
-- Error: tests/neg-macros/macro-deprecation.scala:5:18 ---------------------------------------------------------------- | ||
5 |inline def f = ${ impl } // error | ||
| ^^^^ | ||
| method impl is deprecated |
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
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,60 +1,61 @@ | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:6:4 ------------------------------------------------------------- | ||
6 | Value // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:6:4 ----------------------------------------------------------- | ||
6 | Value // warn | ||
| ^^^^^ | ||
| Could not transform call to scala.Enumeration.Value. | ||
| The resulting program is unlikely to function properly as this operation requires reflection. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:10:9 ------------------------------------------------------------ | ||
10 | Value(4) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:10:9 ---------------------------------------------------------- | ||
10 | Value(4) // warn | ||
| ^^^^^^^^ | ||
| Could not transform call to scala.Enumeration.Value. | ||
| The resulting program is unlikely to function properly as this operation requires reflection. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:15:15 ----------------------------------------------------------- | ||
15 | val a = Value(null) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:15:15 --------------------------------------------------------- | ||
15 | val a = Value(null) // warn | ||
| ^^^^^^^^^^^ | ||
| Passing null as name to scala.Enumeration.Value requires reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:16:15 ----------------------------------------------------------- | ||
16 | val b = Value(10, null) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:16:15 --------------------------------------------------------- | ||
16 | val b = Value(10, null) // warn | ||
| ^^^^^^^^^^^^^^^ | ||
| Passing null as name to scala.Enumeration.Value requires reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:20:10 ----------------------------------------------------------- | ||
20 | val a = new Val // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:20:10 --------------------------------------------------------- | ||
20 | val a = new Val // warn | ||
| ^^^^^^^ | ||
| Calls to the non-string constructors of scala.Enumeration.Val require reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:21:10 ----------------------------------------------------------- | ||
21 | val b = new Val(10) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:21:10 --------------------------------------------------------- | ||
21 | val b = new Val(10) // warn | ||
| ^^^^^^^^^^^ | ||
| Calls to the non-string constructors of scala.Enumeration.Val require reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:25:10 ----------------------------------------------------------- | ||
25 | val a = new Val(null) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:25:10 --------------------------------------------------------- | ||
25 | val a = new Val(null) // warn | ||
| ^^^^^^^^^^^^^ | ||
| Passing null as name to a constructor of scala.Enumeration.Val requires reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:26:10 ----------------------------------------------------------- | ||
26 | val b = new Val(10, null) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:26:10 --------------------------------------------------------- | ||
26 | val b = new Val(10, null) // warn | ||
| ^^^^^^^^^^^^^^^^^ | ||
| Passing null as name to a constructor of scala.Enumeration.Val requires reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:30:31 ----------------------------------------------------------- | ||
30 | protected class Val1 extends Val // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:30:31 --------------------------------------------------------- | ||
30 | protected class Val1 extends Val // warn | ||
| ^^^ | ||
| Calls to the non-string constructors of scala.Enumeration.Val require reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:31:31 ----------------------------------------------------------- | ||
31 | protected class Val2 extends Val(1) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:31:31 --------------------------------------------------------- | ||
31 | protected class Val2 extends Val(1) // warn | ||
| ^^^^^^ | ||
| Calls to the non-string constructors of scala.Enumeration.Val require reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:35:31 ----------------------------------------------------------- | ||
35 | protected class Val1 extends Val(null) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:35:31 --------------------------------------------------------- | ||
35 | protected class Val1 extends Val(null) // warn | ||
| ^^^^^^^^^ | ||
| Passing null as name to a constructor of scala.Enumeration.Val requires reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
-- Error: tests/neg-scalajs/enumeration-warnings.scala:36:31 ----------------------------------------------------------- | ||
36 | protected class Val2 extends Val(1, null) // error | ||
-- Warning: tests/neg-scalajs/enumeration-warnings.scala:36:31 --------------------------------------------------------- | ||
36 | protected class Val2 extends Val(1, null) // warn | ||
| ^^^^^^^^^^^^ | ||
| Passing null as name to a constructor of scala.Enumeration.Val requires reflection at run-time. | ||
| The resulting program is unlikely to function properly. | ||
No warnings can be incurred under -Werror. |
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
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 +1,2 @@ | ||
6: Match case Unreachable | ||
0: No Kind |
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