[java-inspections] EA-1160494 - IOE: BasicJavaParserUtil.parseFragment

GitOrigin-RevId: 5a13ceb97f8105766928d67336fe9a87df62053a
This commit is contained in:
Tagir Valeev
2024-06-11 10:30:06 +02:00
committed by intellij-monorepo-bot
parent ab6fad9379
commit 49ed49dc2d
3 changed files with 20 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
// "Fix all 'Integer multiplication or shift implicitly cast to 'long'' problems in file" "true"
class X {
void test(int x) {
long y = (long) x * 'a';
}
}

View File

@@ -0,0 +1,6 @@
// "Fix all 'Integer multiplication or shift implicitly cast to 'long'' problems in file" "true"
class X {
void test(int x) {
long y = x *<caret> 'a';
}
}