Skip to content

Commit 75ac7a9

Browse files
Make i21215 a pos test
1 parent 6e1ae14 commit 75ac7a9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/neg/i21215.scala renamed to tests/pos/i21215.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ trait Temporal[F[_]] extends MonadError[F, Throwable]
99

1010
trait FlatMapOps[F[_], A]:
1111
def flatMap[B](f: A => F[B]): F[B] = ???
12+
def map[B](f: A => B): F[B] = ???
1213
def ifM[B](ifTrue: => F[B], ifFalse: => F[B])(implicit F: FlatMap[F]): F[B] = ???
1314

1415
implicit def toFlatMapOps[F[_], A](target: F[A])(implicit tc: FlatMap[F]): FlatMapOps[F, A] = ???

0 commit comments

Comments
 (0)