Skip to content

Commit

Permalink
remove explicit types
Browse files Browse the repository at this point in the history
  • Loading branch information
bishabosha committed May 30, 2024
1 parent f020133 commit 97ab3de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/pos/named-tuples-ops-mirror.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ trait GreetService derives HttpService:
// and function that matches the required signature.
val logic = e.serverLogic:
(
greet = (name: String) => Right("Hello, " + name),
setGreeting = (name: String, greeting: String) => Right(())
greet = (name) => Right("Hello, " + name),
setGreeting = (name, greeting) => Right(())
)

val server = ServerBuilder()
Expand Down

0 comments on commit 97ab3de

Please sign in to comment.