There is one trait with type declaration. I can not figure out what the actual SomeType
type is? Here is the code:
package someModel {
trait SomeTrait extends Serializable {
type SomeType
def id: SomeType
}
}
Important notes
- There is no imports in someModel file.
- Serializable is scala.Serializable
type SomeType
appear inSomeTrait
only. Not somewhere down in the file.