Add "Quick Type Definition" tests for Java and Ruby

GitOrigin-RevId: 787c15e679ae1273dfff94732f7e4d8c3e054255
This commit is contained in:
Marat Khabibullin
2019-12-11 17:04:21 +00:00
committed by intellij-monorepo-bot
parent 15230c68e2
commit 398b27545c
7 changed files with 86 additions and 1 deletions
@@ -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>);
}
}