mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
11 lines
209 B
Java
11 lines
209 B
Java
// "Create class 'Baz'" "true"
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class TestClass {
|
|
|
|
public static void foo() {
|
|
final @NotNull String bar = "bar";
|
|
var baz = new <caret>Baz(bar);
|
|
}
|
|
|
|
} |