diff options
Diffstat (limited to 'test/lsp/JavaA')
-rw-r--r-- | test/lsp/JavaA/.ted-root | 0 | ||||
-rw-r--r-- | test/lsp/JavaA/Main.java | 8 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/lsp/JavaA/.ted-root b/test/lsp/JavaA/.ted-root new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/lsp/JavaA/.ted-root diff --git a/test/lsp/JavaA/Main.java b/test/lsp/JavaA/Main.java new file mode 100644 index 0000000..2792b7c --- /dev/null +++ b/test/lsp/JavaA/Main.java @@ -0,0 +1,8 @@ +public class Main { + public static void main(String[] args) { + int x = 0; + x++; + for (int i = 0; i < args.length; ++i) { + } + } +} |