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