mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 19:24:40 +07:00
GitOrigin-RevId: 9a3ab90be0420b79f913c96b0d0101e538e6fca6
14 lines
302 B
Java
14 lines
302 B
Java
// "Add 'catch' clause(s)" "true-preview"
|
|
import org.intellij.lang.annotations.Language;
|
|
|
|
class X {
|
|
@Language("JAVA") String java = """
|
|
class Cls {
|
|
{
|
|
try {
|
|
}<caret>
|
|
}
|
|
}
|
|
""";
|
|
|
|
} |