-
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.
Do not show deprecation waning for
_
in type match case
Fixes #18808
- Loading branch information
1 parent
c7b3d7b
commit 6d7aa99
Showing
3 changed files
with
19 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
//> using options -source:future -deprecation | ||
scala> type M[X] = X match { case Int => String case _ => Int } | ||
scala> type N[X] = X match { case List[_] => Int } | ||
1 warning found | ||
-- Deprecation Warning: -------------------------------------------------------- | ||
1 | type N[X] = X match { case List[_] => Int } | ||
| ^ | ||
| `_` is deprecated for wildcard arguments of types: use `?` instead |
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,9 @@ | ||
//> using options -Werror | ||
|
||
import language.future | ||
|
||
type F[X] = X match | ||
case List[_] => Int | ||
|
||
type G[X] = X match | ||
case List[?] => Int |