Wenchen Fan created SPARK-14146: ----------------------------------- Summary: imported implicit can't be found in Spark REPL in some case Key: SPARK-14146 URL: https://issues.apache.org/jira/browse/SPARK-14146 Project: Spark Issue Type: Bug Components: SQL Reporter: Wenchen Fan
{code} class I(i: Int) { def double: Int = i * 2 } class Context { implicit def toI(i: Int): I = new I(i) } val c = new Context import c._ // OK 1.double // Fail class A; 1.double {code} The above code snippets can work in Scala REPL however. -- This message was sent by Atlassian JIRA (v6.3.4#6332) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org For additional commands, e-mail: issues-h...@spark.apache.org