Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.9.7
80335e34bc39b7576c918f3be0355010e724c2fd
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.9.3
version = 3.9.7

runner.dialect = scala212

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import fs2._

object Fs2SyncCompilerTest {
def usesSyncInnocently[F[_]](implicit F: Sync[F]) = F.delay(println("hi"))
def usesSyncCompiler[F[_]](implicit F: Sync[F]) =
def usesSyncCompiler[F[_]](implicit F: Sync[F]) =
Stream(1, 2, 3).covary[F].compile.drain // assert: TypelevelFs2SyncCompiler.syncCompiler
def usesConcurrentCompiler[F[_]](implicit F: Concurrent[F]) =
Stream(1, 2, 3).covary[F].compile.drain
Expand Down