mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-20 01:39:27 +07:00
048abf37d7
Fixes IDEA-117884 Inspection "Divide by zero": Recognize 0.0/0.0
6 lines
105 B
Java
6 lines
105 B
Java
// "Replace with 'NaN'" "true"
|
|
class Test {
|
|
public void test() {
|
|
double nan = 0.0/<caret>0.0;
|
|
}
|
|
} |