Commit c8d7ca1
committed
tryfix(16459): xml literal in for comprehension
xml literal may appear in LHS of for comprehension.
The previous fix caused a syntax error for the following code.
```scala
val actual: List[Node] = for (case t @ <book><title>Blabla</title></book> <- NodeSeq.fromSeq(books.child).toList)
yield t
```1 parent 3debae0 commit c8d7ca1
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
906 | 906 | | |
907 | 907 | | |
908 | 908 | | |
909 | | - | |
| 909 | + | |
910 | 910 | | |
911 | 911 | | |
912 | 912 | | |
| |||
0 commit comments