You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In incremental builds the compiler doesn't notice that implicit keyword has been removed from a method and still uses the now not implicit definition instead of rerunning the search, but I assume this is well known.
I must add that it certainly is not always so and I tried to provide a minimized example without success, but these things, depending on the history of changes, are tricky. Just in order to not look like an idiot, here it is in the wild: oldsql commit
Reproduction steps:
in src/tests/scala/playground.scala (or any scratch file, for that matter) put:
Then:
1. navigate to src/main/scala/net/noresttherein/oldsql.schema/forms/SQLForms.scala
2. find trait ColumnRWFormsImplicits
3. remove the implicit keyword from method OptionColumnReadForm
4. recompile
5. run playground or your scratch file again
The result is the same as before, while it should print:
In incremental builds the compiler doesn't notice that
implicit
keyword has been removed from a method and still uses the now not implicit definition instead of rerunning the search, but I assume this is well known.Originally posted by @noresttherein in scala/bug#12231 (comment)
The text was updated successfully, but these errors were encountered: