Skip to content

Commit b48b2c1

Browse files
Merge pull request #12866 from dotty-staging/fix-windows-ci
Fix CI job test_windows_full
2 parents cdafcc2 + 5addf42 commit b48b2c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/pos/i11556.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ type Query[-I, +O] = Traverser[Path[I], Path[O]]
1010
def nodesQ(using g: Graph): Query[Nothing, g.Node] = ???
1111
def outsQ(using g: Graph): Query[g.Node, g.Node] = ???
1212

13-
object graph extends Graph
14-
import graph._
15-
given graph.type = graph
13+
object graphObj extends Graph
14+
import graphObj._
15+
given graphObj.type = graphObj
1616

1717
object Issue11556:
1818
val q1: Query[Nothing, Node] = nodesQ ~> outsQ

0 commit comments

Comments
 (0)