about summary refs log tree commit diff
path: root/third_party/git/t/t4018/custom3-alternation-in-pattern
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4018/custom3-alternation-in-pattern')
-rw-r--r--third_party/git/t/t4018/custom3-alternation-in-pattern17
1 files changed, 0 insertions, 17 deletions
diff --git a/third_party/git/t/t4018/custom3-alternation-in-pattern b/third_party/git/t/t4018/custom3-alternation-in-pattern
deleted file mode 100644
index 5f3769c64f..0000000000
--- a/third_party/git/t/t4018/custom3-alternation-in-pattern
+++ /dev/null
@@ -1,17 +0,0 @@
-public class Beer
-{
-	int special;
-	public static void main(String RIGHT[])
-	{
-		String s=" ";
-		for(int x = 99; x > 0; x--)
-		{
-			System.out.print(x + " bottles of beer on the wall "
-				+ x + " bottles of beer\n" // ChangeMe
-				+ "Take one down, pass it around, " + (x - 1)
-				+ " bottles of beer on the wall.\n");
-		}
-		System.out.print("Go to the store, buy some more,\n"
-			+ "99 bottles of beer on the wall.\n");
-	}
-}