about summary refs log tree commit diff
path: root/third_party/git/t/t4018/perl-skip-sub-in-pod
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t4018/perl-skip-sub-in-pod')
-rw-r--r--third_party/git/t/t4018/perl-skip-sub-in-pod18
1 files changed, 0 insertions, 18 deletions
diff --git a/third_party/git/t/t4018/perl-skip-sub-in-pod b/third_party/git/t/t4018/perl-skip-sub-in-pod
deleted file mode 100644
index e39f02462e..0000000000
--- a/third_party/git/t/t4018/perl-skip-sub-in-pod
+++ /dev/null
@@ -1,18 +0,0 @@
-=head1 NAME
-
-Beer - subroutine to output fragment of a drinking song
-
-=head1 SYNOPSIS_RIGHT
-
-	use Beer qw(round finalround);
-
-	sub song {
-		for (my $i = 99; $i > 0; $i--) {
-			round $i;
-		}
-		finalround;
-	}
-
-	ChangeMe;
-
-=cut