scala/scala3

NoSuchMethodError calling operator names from non-scala classes

Open

#4,534 opened on May 15, 2018

View on GitHub
 (7 comments) (0 reactions) (1 assignee)Scala (6,247 stars) (1,159 forks)batch import
help wanteditype:enhancementstat:needs spec

Description

Here's a Kotlin class:

class C {
  fun `+`() = 10
}

When I use it in repl, the completion can suggest the + method:

However, problems occur when calling:

Contributor guide