Skip to content

Commit 8cb1cd7

Browse files
committed
Remove use of unstable inline parameter path
See scala/scala3#15511
1 parent 16d26fc commit 8cb1cd7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

quill-sql-tests/src/test/scala/io/getquill/examples/TypelevelUsecase.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ object TypelevelUsecase {
3939
rp <- query[RoleToPermission].join(rp => rp.roleId == r.id)
4040
p <- query[Permission].join(p => p.id == rp.roleId)
4141
} yield (s, r, p)
42-
43-
inline def path[F, T](using inline path: Path[F, T]): path.Out = path.get
44-
42+
43+
inline def path[F, T](using path: Path[F, T]): path.Out = path.get
44+
4545
inline def q1 = quote { path[User, Role].filter(so => so._2.name == "Drinker") }
4646

4747
//inline def q1 = quote { path[User, Permission].filter(urp => urp._2.name == "GuiUser" && urp._1.name == "Joe") }

0 commit comments

Comments
 (0)