mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
321 B
Plaintext
12 lines
321 B
Plaintext
class TestInlineMethod {
|
|
|
|
/**
|
|
* {@link #TestInlineMethod(String, int, String, int)}
|
|
*/
|
|
public TestInlineMethod(Integer i1, Integer i2) {
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
TestInlineMethod test = new TestInlineMethod(Integer.valueOf("10", 10), Integer.valueOf("A", 16));
|
|
}
|
|
} |