summaryrefslogtreecommitdiffhomepage
path: root/test/perl/syntax_error
diff options
context:
space:
mode:
Diffstat (limited to 'test/perl/syntax_error')
-rw-r--r--test/perl/syntax_error/psgi.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/perl/syntax_error/psgi.pl b/test/perl/syntax_error/psgi.pl
new file mode 100644
index 00000000..2b6dbbea
--- /dev/null
+++ b/test/perl/syntax_error/psgi.pl
@@ -0,0 +1,5 @@
+my $app = sub {
+ my ($environ) = @_
+
+ return ['200', [], []];
+};