|
6 | 6 | |The following import might fix the problem: |
7 | 7 | | |
8 | 8 | | import testObjectInstance.instances.zipOption |
9 | | - | |
| 9 | + | |
10 | 10 | -- [E008] Not Found Error: tests/neg/missing-implicit1.scala:19:16 ----------------------------------------------------- |
11 | 11 | 19 | List(1, 2, 3).traverse(x => Option(x)) // error |
12 | 12 | | ^^^^^^^^^^^^^^^^^^^^^^ |
|
15 | 15 | | The following import might make progress towards fixing the problem: |
16 | 16 | | |
17 | 17 | | import testObjectInstance.instances.traverseList |
18 | | - | |
| 18 | + | |
19 | 19 | -- Error: tests/neg/missing-implicit1.scala:23:42 ---------------------------------------------------------------------- |
20 | 20 | 23 | List(1, 2, 3).traverse(x => Option(x)) // error |
21 | 21 | | ^ |
|
24 | 24 | |The following import might fix the problem: |
25 | 25 | | |
26 | 26 | | import testObjectInstance.instances.zipOption |
27 | | - | |
| 27 | + | |
28 | 28 | -- [E008] Not Found Error: tests/neg/missing-implicit1.scala:26:16 ----------------------------------------------------- |
29 | 29 | 26 | List(1, 2, 3).first // error |
30 | 30 | | ^^^^^^^^^^^^^^^^^^^ |
|
33 | 33 | | The following import might fix the problem: |
34 | 34 | | |
35 | 35 | | import testObjectInstance.instances.first |
36 | | - | |
| 36 | + | |
37 | 37 | -- [E008] Not Found Error: tests/neg/missing-implicit1.scala:27:16 ----------------------------------------------------- |
38 | 38 | 27 | List(1, 2, 3).second // error |
39 | 39 | | ^^^^^^^^^^^^^^^^^^^^ |
|
42 | 42 | | The following import might fix the problem: |
43 | 43 | | |
44 | 44 | | import testObjectInstance.instances.listExtension |
45 | | - | |
| 45 | + | |
46 | 46 | -- [E008] Not Found Error: tests/neg/missing-implicit1.scala:28:17 ----------------------------------------------------- |
47 | 47 | 28 | Array(1, 2, 3).first // error, no hint |
48 | 48 | | ^^^^^^^^^^^^^^^^^^^^ |
|
55 | 55 | | The following import might fix the problem: |
56 | 56 | | |
57 | 57 | | import instances.zipOption |
58 | | - | |
| 58 | + | |
59 | 59 | -- [E008] Not Found Error: tests/neg/missing-implicit1.scala:46:16 ----------------------------------------------------- |
60 | 60 | 46 | List(1, 2, 3).traverse(x => Option(x)) // error |
61 | 61 | | ^^^^^^^^^^^^^^^^^^^^^^ |
|
64 | 64 | | The following import might make progress towards fixing the problem: |
65 | 65 | | |
66 | 66 | | import instances.traverseList |
67 | | - | |
| 67 | + | |
68 | 68 | -- Error: tests/neg/missing-implicit1.scala:50:42 ---------------------------------------------------------------------- |
69 | 69 | 50 | List(1, 2, 3).traverse(x => Option(x)) // error |
70 | 70 | | ^ |
|
73 | 73 | |The following import might fix the problem: |
74 | 74 | | |
75 | 75 | | import instances.zipOption |
76 | | - | |
| 76 | + | |
0 commit comments