Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t/t4018
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2014-03-22 01:07:17 +0400
committerJunio C Hamano <gitster@pobox.com>2014-03-22 02:02:36 +0400
commitdd4dc5c574c0849fef6855d9efdfae5dc9369f2d (patch)
tree47df3242d87a72e59e06975fbbd81bbe5a472933 /t/t4018
parent2d08413ba1ce0a1940e97a5a8af5faf40ab8d178 (diff)
t4018: convert java pattern test to the new infrastructure
Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4018')
-rw-r--r--t/t4018/java-class-member-function8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t4018/java-class-member-function b/t/t4018/java-class-member-function
new file mode 100644
index 0000000000..298bc7a71b
--- /dev/null
+++ b/t/t4018/java-class-member-function
@@ -0,0 +1,8 @@
+public class Beer
+{
+ int special;
+ public static void main(String RIGHT[])
+ {
+ System.out.print("ChangeMe");
+ }
+}