|
| 1 | +-- [E100] Syntax Error: tests/neg/i17123.scala:7:2 --------------------------------------------------------------------- |
| 2 | +7 | m1 // error |
| 3 | + | ^^ |
| 4 | + | method m1 in object ConfusingErrorMessage must be called with () argument |
| 5 | + | |
| 6 | + | longer explanation available when compiling with `-explain` |
| 7 | +-- [E177] Type Error: tests/neg/i17123.scala:9:2 ----------------------------------------------------------------------- |
| 8 | +9 | m2 // error |
| 9 | + | ^^ |
| 10 | + | missing argument list for method m2 in object ConfusingErrorMessage |
| 11 | + | |
| 12 | + | def m2()(): Unit |
| 13 | + | |
| 14 | + | longer explanation available when compiling with `-explain` |
| 15 | +-- [E177] Type Error: tests/neg/i17123.scala:10:4 ---------------------------------------------------------------------- |
| 16 | +10 | m2() // error |
| 17 | + | ^^^^ |
| 18 | + | missing argument list for method m2 in object ConfusingErrorMessage |
| 19 | + | |
| 20 | + | def m2()(): Unit |
| 21 | + | |
| 22 | + | longer explanation available when compiling with `-explain` |
| 23 | +-- [E177] Type Error: tests/neg/i17123.scala:11:2 ---------------------------------------------------------------------- |
| 24 | +11 | m3 // error |
| 25 | + | ^^ |
| 26 | + | missing argument list for method m3 in object ConfusingErrorMessage |
| 27 | + | |
| 28 | + | def m3()()(): Unit |
| 29 | + | |
| 30 | + | longer explanation available when compiling with `-explain` |
| 31 | +-- [E177] Type Error: tests/neg/i17123.scala:12:4 ---------------------------------------------------------------------- |
| 32 | +12 | m3() // error |
| 33 | + | ^^^^ |
| 34 | + | missing argument list for method m3 in object ConfusingErrorMessage |
| 35 | + | |
| 36 | + | def m3()()(): Unit |
| 37 | + | |
| 38 | + | longer explanation available when compiling with `-explain` |
| 39 | +-- [E177] Type Error: tests/neg/i17123.scala:13:6 ---------------------------------------------------------------------- |
| 40 | +13 | m3()() // error |
| 41 | + | ^^^^^^ |
| 42 | + | missing argument list for method m3 in object ConfusingErrorMessage |
| 43 | + | |
| 44 | + | def m3()()(): Unit |
| 45 | + | |
| 46 | + | longer explanation available when compiling with `-explain` |
| 47 | +-- [E177] Type Error: tests/neg/i17123.scala:15:2 ---------------------------------------------------------------------- |
| 48 | +15 | f3 // error |
| 49 | + | ^^ |
| 50 | + | missing argument list for method f3 in object ConfusingErrorMessage |
| 51 | + | |
| 52 | + | def f3()(i: Int)(): Unit |
| 53 | + | |
| 54 | + | longer explanation available when compiling with `-explain` |
| 55 | +-- [E177] Type Error: tests/neg/i17123.scala:16:2 ---------------------------------------------------------------------- |
| 56 | +16 | f3() // error |
| 57 | + | ^^^^ |
| 58 | + | missing argument list for method f3 in object ConfusingErrorMessage |
| 59 | + | |
| 60 | + | def f3()(i: Int)(): Unit |
| 61 | + | |
| 62 | + | longer explanation available when compiling with `-explain` |
| 63 | +-- [E177] Type Error: tests/neg/i17123.scala:17:6 ---------------------------------------------------------------------- |
| 64 | +17 | f3()(2) // error |
| 65 | + | ^^^^^^^ |
| 66 | + | missing argument list for method f3 in object ConfusingErrorMessage |
| 67 | + | |
| 68 | + | def f3()(i: Int)(): Unit |
| 69 | + | |
| 70 | + | longer explanation available when compiling with `-explain` |
| 71 | +-- [E177] Type Error: tests/neg/i17123.scala:19:2 ---------------------------------------------------------------------- |
| 72 | +19 | i3 // error |
| 73 | + | ^^ |
| 74 | + | missing argument list for method i3 in object ConfusingErrorMessage |
| 75 | + | |
| 76 | + | def i3()(using d: DummyImplicit)(): Unit |
| 77 | + | |
| 78 | + | longer explanation available when compiling with `-explain` |
| 79 | +-- [E177] Type Error: tests/neg/i17123.scala:20:2 ---------------------------------------------------------------------- |
| 80 | +20 | i3() // error |
| 81 | + | ^^^^ |
| 82 | + | missing argument list for method i3 in object ConfusingErrorMessage |
| 83 | + | |
| 84 | + | def i3()(using d: DummyImplicit)(): Unit |
| 85 | + | |
| 86 | + | longer explanation available when compiling with `-explain` |
0 commit comments