-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parser issue: StringIndexOutOfBounds #564
Comments
I saw a similar @Test
void scalaImport() {
rewriteRun(
kotlin(
"""
import my.org.`x$`
fun main() {
}
"""
)
);
}
maybe this is related to #559 |
The problematic code in hypercube1024/firefly are some import statements (like https://github.com/hypercube1024/firefly/blob/628cfb219a48bdfa104c180d3f96a4690ec46ca4/firefly-example/src/main/kotlin/com/fireflysource/example/HttpServerPathParamDemo.kt#L3): import com.fireflysource.`$` |
This is in fact the same as in import my.org.`x$` |
The issue is that |
There is no information in the parse error result, this occurs on hypercube1024/firefly
The text was updated successfully, but these errors were encountered: