How to get list of traits that were mixed in the specified class?
- by Jeriho
And more specific example:
abstract trait A
trait B extends A
trait C extends A
How to check what traits that extend trait A (it can be from 0 to many) were mixed in specified class?