mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +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.
|
|
*/
|
|
}
|
|
} |