mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 17:10:44 +07:00
Add "Quick Type Definition" tests for Java and Ruby
GitOrigin-RevId: 787c15e679ae1273dfff94732f7e4d8c3e054255
This commit is contained in:
committed by
intellij-monorepo-bot
parent
15230c68e2
commit
398b27545c
@@ -0,0 +1,4 @@
|
||||
public class Ma<caret>in {
|
||||
public static void main(String[] args) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
int num = 1;
|
||||
System.out.println(n<caret>um);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public class Main {
|
||||
public static void ma<caret>in(String[] args) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public class Main {
|
||||
public static void main(Str<caret>ing[] args) {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
String str = "hello";
|
||||
System.out.println(str<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user