|
16 | 16 | | Not found: hellx - did you mean hello?
|
17 | 17 | |
|
18 | 18 | | longer explanation available when compiling with `-explain`
|
19 |
| --- [E008] Not Found Error: tests/neg/i18682.scala:13:12 ---------------------------------------------------------------- |
20 |
| -13 |val _ = bar.Bap // error, App does shown as hint, too far away |
| 19 | +-- [E008] Not Found Error: tests/neg/i18682.scala:16:12 ---------------------------------------------------------------- |
| 20 | +16 |val _ = bar.Bap // error, App does not show as hint, too far away |
21 | 21 | | ^^^^^^^
|
22 | 22 | | value Bap is not a member of object Bar
|
23 |
| --- [E008] Not Found Error: tests/neg/i18682.scala:14:12 ---------------------------------------------------------------- |
24 |
| -14 |val _ = bar.Bap() // error |
| 23 | +-- [E008] Not Found Error: tests/neg/i18682.scala:17:12 ---------------------------------------------------------------- |
| 24 | +17 |val _ = bar.Bap() // error |
25 | 25 | | ^^^^^^^
|
26 | 26 | | value Bap is not a member of object Bar - did you mean bar.Baz?
|
27 |
| --- [E006] Not Found Error: tests/neg/i18682.scala:16:8 ----------------------------------------------------------------- |
28 |
| -16 |val _ = error // error, java.lang.Error does not show as hint, since it is not a value |
| 27 | +-- [E006] Not Found Error: tests/neg/i18682.scala:19:8 ----------------------------------------------------------------- |
| 28 | +19 |val _ = error // error, java.lang.Error does not show as hint, since it is not a value |
29 | 29 | | ^^^^^
|
30 | 30 | | Not found: error
|
31 | 31 | |
|
32 | 32 | | longer explanation available when compiling with `-explain`
|
| 33 | +-- [E008] Not Found Error: tests/neg/i18682.scala:22:50 ---------------------------------------------------------------- |
| 34 | +22 |val _ = "123".view.reverse.padTo(5, '0').iterator.reverse // error, no hint since `reversed` is not accessible |
| 35 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 36 | + | value reverse is not a member of Iterator[Char] |
| 37 | +-- [E006] Not Found Error: tests/neg/i18682.scala:27:8 ----------------------------------------------------------------- |
| 38 | +27 |val _ = pool // error |
| 39 | + | ^^^^ |
| 40 | + | Not found: pool - did you mean cool? or perhaps wool? |
| 41 | + | |
| 42 | + | longer explanation available when compiling with `-explain` |
| 43 | +-- [E008] Not Found Error: tests/neg/i18682.scala:29:12 ---------------------------------------------------------------- |
| 44 | +29 |val _ = bar.poodle // error |
| 45 | + | ^^^^^^^^^^ |
| 46 | + | value poodle is not a member of object Bar - did you mean bar.pool? |
| 47 | +-- [E008] Not Found Error: tests/neg/i18682.scala:31:12 ---------------------------------------------------------------- |
| 48 | +31 |val _ = bar.ool // error |
| 49 | + | ^^^^^^^ |
| 50 | + | value ool is not a member of object Bar - did you mean bar.cool? or perhaps bar.pool or bar.wool? |
0 commit comments