Closed
Description
I have module A with the following source file:
import scala.scalajs.reflect.annotation.EnableReflectiveInstantiation
@EnableReflectiveInstantiation
trait AbstractTestSuite {
def properties: Properties[_]
}
Then, I have module B that uses AbstractTestSuite
somehow. When compiling module B, I get the following error:
[error] undefined: new <notype> # 163215: TermRef(TypeRef(TermRef(ThisType(TypeRef(NoPrefix,module class reflect)),annotation),EnableReflectiveInstantiation),<init>)
Looks like an error of annotations + tasty?
For context, see jvican/minitest@5d37226.