I have a method like:
def loadConfiguration[T <: Product](implicit A: Configs[T]): T = {
and a class
trait SparkBaseRunner[T <: Product] extends App {
when calling the first method from within the SparkBaseRunner
class like
ConfigurationUtils.loadConfiguration[T]
the compile error is:
T is not a class
What can I do to fix this generics related issue?