mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
aa89c3b6fa
Fixes IDEA-187526 "Add static import" with an intervening comment leads to exception
8 lines
199 B
Java
8 lines
199 B
Java
class X {
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println("took " + (System//simple end comment
|
|
.currentTi<caret>meMillis() - 1) + "ms");
|
|
}
|
|
|
|
} |