Skip to content

Commit db8528b

Browse files
committed
Workaround for community-build failure
1 parent 4b5f753 commit db8528b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

community-build/src/scala/dotty/communitybuild/FieldsImpl.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ object FieldsImpl:
1313
s.isValDef && s.tree.asInstanceOf[ValDef].tpt.tpe <:< retType
1414
val projectsTree = from.asTerm
1515
val symbols = TypeTree.of[V].symbol.declaredFields.filter(isProjectField)
16-
val selects = symbols.map(Select(projectsTree, _).asExprOf[T])
16+
val selects = symbols.map(Select(projectsTree, _).asExprOf: Expr[T])
1717
'{ println(${Expr(retType.show)}); ${Varargs(selects)} }

0 commit comments

Comments
 (0)