Considering

object A {
  def m(i: Int) = i
  val m = (i: Int) => i * 2
}

one gets

scala> A.m(2)
<console>: error: ambiguous reference to overloaded definition,
both value m in object A of type => (Int) => Int
and  method m in object A of type (i: Int)Int
match argument types (Int)
       A.m(2)
         ^

Accessing the val can be done with

scala> val fun = A.m
fun: (Int) => Int = <function1>

scala> fun(2)
res: Int = 4

or

scala> A.m.apply(2)
res: Int = 4

but how would one access the def?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 11 down vote accepted

It is total rubbish (please, don't do this at home), but you can do it by assigning A to a variable of structural type, that has only the first m.

val x : { def m(i:Int):Int } = A
x.m(10)
link|improve this answer
1  
Neat trick! Btw, just casting also works: A.asInstanceOf[{def m(i:Int):Int}].m(10) – Philippe Sep 30 '11 at 11:52
3  
@Philippe: No need for asInstanceOf there: (A: {def m(i:Int):Int}).m(10) – Debilski Sep 30 '11 at 11:56
9  
Don't try that at work either! – huynhjl Sep 30 '11 at 14:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.