You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess this use case is not supported, and it's unlikely that this will ever work. @file:Include works by literally rewriting your script code prior to compilation to include the include-file at the given location. kscript tries to be a bit more clever, to at least sort imports to the top of the merged script. But it can't resolve the conflict you've created in your example where a single source file has 2 package statements. This is not legit according to the kotlin language specification.
In my case, I have my
main
in packagex.y
and want to INCLUDE / DependsOn a file in package
x.a
as well as in packagex.y.z
doesn't find the class which is one of the defined classes in
./mappings/Jira.kt
gives me:
btw: ... it took me a long time to really understand your comment you added in ee7748e
The text was updated successfully, but these errors were encountered: