mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
[java-inspections] EA-1160494 - IOE: BasicJavaParserUtil.parseFragment
GitOrigin-RevId: 5a13ceb97f8105766928d67336fe9a87df62053a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ab6fad9379
commit
49ed49dc2d
@@ -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';
|
||||
}
|
||||
}
|
||||
@@ -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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user