mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
18 lines
521 B
Plaintext
18 lines
521 B
Plaintext
class Test {
|
|
public static void main(String... args) {
|
|
// This comment will be lost after inlining this method.
|
|
System.out.println("Hello, bug! (1)");
|
|
/*
|
|
* This comment will be lost after inlining this method.
|
|
*/
|
|
|
|
}
|
|
|
|
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.
|
|
*/
|
|
}
|
|
} |