summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/lib/perl5db
diff options
context:
space:
mode:
authorafresh1 <afresh1@openbsd.org>2021-03-01 23:14:32 +0000
committerafresh1 <afresh1@openbsd.org>2021-03-01 23:14:32 +0000
commitde8cc8edbc71bd3e3bc7fbffa27ba0e564c37d8b (patch)
tree5e91ea1711126841ef19ee1ee17705e29dc6baf0 /gnu/usr.bin/perl/lib/perl5db
parentUpdate the MSI addresses for the Armada 8040. This chunk will only be (diff)
downloadwireguard-openbsd-de8cc8edbc71bd3e3bc7fbffa27ba0e564c37d8b.tar.xz
wireguard-openbsd-de8cc8edbc71bd3e3bc7fbffa27ba0e564c37d8b.zip
Import perl-5.32.1
OK sthen@
Diffstat (limited to 'gnu/usr.bin/perl/lib/perl5db')
-rw-r--r--gnu/usr.bin/perl/lib/perl5db/t/gh-1766014
1 files changed, 14 insertions, 0 deletions
diff --git a/gnu/usr.bin/perl/lib/perl5db/t/gh-17660 b/gnu/usr.bin/perl/lib/perl5db/t/gh-17660
new file mode 100644
index 00000000000..a818f79aecc
--- /dev/null
+++ b/gnu/usr.bin/perl/lib/perl5db/t/gh-17660
@@ -0,0 +1,14 @@
+#!perl
+
+package Bar;
+our $VERSION = "2.000";
+
+sub f {}
+
+package Foo;
+our @ISA = qw(Bar);
+our $VERSION = "1.000";
+
+package main;
+Foo->f();
+