blob: 02842f42e8f5338151f277bc9c0cc043c6665e0a [file] [log] [blame]
<caret>import static java.lang.Math.*;
class HighlightStaticImport {
void g() {
abs(-1.0);
abs(1L);
pow(1.0, 2.0);
}
}