I want to know that wether is possible that I can import trait dynamically and apply to the parent class.
trait A{
function a(){}
}
class B{
//use A <-no import here
function b(){
//Define if need trait A
// Import A and apply to B <- Possible?
}
}
Thank you very much for your advice!