Maybe I'm missing something obvious, but:
package.scala
package heptic package object proj { case class Jesus(axes: Int) def foo: Jesus = Jesus(44) }
Gives a compilation error:
found : heptic.proj.Jesus required: heptic.proj.package.Jesus def foo: Jesus = Jesus(44) ^
which doesn't seem to make much sense (especially when the type output is from the compiler (last, 2.10.1))
source share