mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 2033b095f35f02222aa40f43d37e07b0019c4324
8 lines
153 B
Java
8 lines
153 B
Java
// "Replace 's' with pattern variable" "true"
|
|
class X {
|
|
void test(float obj) {
|
|
if (obj instanceof int) {
|
|
int <caret>s = (int)obj;
|
|
}
|
|
}
|
|
} |