mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-18 22:42:49 +07:00
ed4a26a905
when methods (> 1) with same name exist in the containing class
9 lines
166 B
Java
9 lines
166 B
Java
import foo.*;
|
|
class MyTest {
|
|
{
|
|
Assert.assert<caret>True(false);
|
|
}
|
|
|
|
static void assertTrue() {}
|
|
static void assertTrue(String message, boolean flag) {}
|
|
} |