Advertisement
Guest User

Dotty Example

a guest
Aug 3rd, 2014
2
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.15 KB | None | 0 0
  1. trait MapThing[type Key, type Value]
  2. trait StringMapThing[override type Value] extends MapThing[String, Value]
  3. class IntMapThing extends StringMapThing[Int]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement