File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ trait x0[T] { self: x0 => } // error
2
2
3
3
trait x1 [T ] { self : (=> String ) => } // error
4
4
5
- trait x2 [T ] { self : ([X ] => X ) => } // error
5
+ trait x2 [T ] { self : ([X ] =>> X ) => } // error
6
6
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ object Test {
17
17
type T1 = _ // error
18
18
type T2 = _[Int ] // error
19
19
type T3 = _ { type S } // error
20
- type T4 = [X ] => _ // error
20
+ type T4 = [X ] =>> _ // error
21
21
22
22
// Open questions:
23
23
type T5 = TypeConstr [_ { type S }] // error
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ object Test {
7
7
def f [F [_]](x : Box [F ]) = ???
8
8
def db : Box [D ] = ???
9
9
def cb : Box [C ] = db // error
10
- f[[X ] => C [X ]](db) // error
11
- }
10
+ f[[X ] =>> C [X ]](db) // error
11
+ }
You can’t perform that action at this time.
0 commit comments