mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
14 lines
358 B
Java
14 lines
358 B
Java
class Test {
|
|
public static void main(String... args) {
|
|
methodToBe<caret>Inlined1();
|
|
|
|
}
|
|
|
|
private static void methodToBeInlined1() {
|
|
// This comment will be lost after inlining this method.
|
|
System.out.println("Hello, bug! (1)");
|
|
/*
|
|
* This comment will be lost after inlining this method.
|
|
*/
|
|
}
|
|
} |