mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 06:32:48 +07:00
GitOrigin-RevId: 5e663ac98c323faf36afcaf18115b6e4036d980d
6 lines
145 B
Java
6 lines
145 B
Java
// "Compute constant value of 'Math.sqrt(...) + 10'" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
double res = Math.<caret>sqrt(2) + 10;
|
|
}
|
|
} |