-
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.
Suppress additional warnings existing in the LTS due to rejection of #…
…17548 backport
- Loading branch information
1 parent
c2eb000
commit 7a6b83b
Showing
3 changed files
with
19 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// LTS specifc, not applicable to Next thanks to #17548 improvements | ||
trait Empty[T]: | ||
def empty: T | ||
|
||
object Empty: | ||
inline def withOnly[F[_], R, T](f: [t <: T] => F[t] => R): R = f(null.asInstanceOf[F[T]]) | ||
|
||
def mkEmpty[T](t: T): Empty[T] = ??? | ||
|
||
inline given emptyGenC[A]: Empty[A] = | ||
mkEmpty(withOnly[Empty, A, A]([a <: A] => (_: Empty[a]).empty)) // warn | ||
|
||
@main def Test = | ||
Empty.emptyGenC[String] |