File tree 2 files changed +20
-5
lines changed 2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 1
- -- Error: tests/neg/i13044.scala:50 :40 ---------------------------------------------------------------------------------
2
- 50 | implicit def typeSchema: Schema[A] = Schema.gen // error // error
1
+ -- Error: tests/neg/i13044.scala:65 :40 ---------------------------------------------------------------------------------
2
+ 65 | implicit def typeSchema: Schema[A] = Schema.gen // error // error
3
3
| ^^^^^^^^^^
4
4
| given instance gen is declared as `inline`, but was not inlined
5
5
|
71
71
37 | inline given gen[A]: Schema[A] = derived
72
72
| ^^^^^^^
73
73
--------------------------------------------------------------------------------------------------------------------
74
- -- Error: tests/neg/i13044.scala:50 :40 ---------------------------------------------------------------------------------
75
- 50 | implicit def typeSchema: Schema[A] = Schema.gen // error // error
74
+ -- Error: tests/neg/i13044.scala:65 :40 ---------------------------------------------------------------------------------
75
+ 65 | implicit def typeSchema: Schema[A] = Schema.gen // error // error
76
76
| ^^^^^^^^^^
77
77
| method recurse is declared as `inline`, but was not inlined
78
78
|
Original file line number Diff line number Diff line change @@ -37,7 +37,22 @@ trait SchemaDerivation {
37
37
inline given gen [A ]: Schema [A ] = derived
38
38
}
39
39
40
- case class H (i : Int )
40
+ case class X15 (i : Int )
41
+ case class X14 (i : X15 )
42
+ case class X13 (i : X14 )
43
+ case class X12 (i : X13 )
44
+ case class X11 (i : X12 )
45
+ case class X10 (i : X11 )
46
+ case class X9 (i : X10 )
47
+ case class X8 (i : X9 )
48
+ case class X7 (i : X8 )
49
+ case class X6 (i : X7 )
50
+ case class X5 (i : X6 )
51
+ case class X4 (i : X5 )
52
+ case class X3 (i : X4 )
53
+ case class X2 (i : X3 )
54
+ case class X1 (i : X2 )
55
+ case class H (i : X1 )
41
56
case class G (h : H )
42
57
case class F (g : G )
43
58
case class E (f : Option [F ])
You can’t perform that action at this time.
0 commit comments