File: segfault.t

package info (click to toggle)
libset-object-perl 1.42-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 620 kB
  • sloc: perl: 1,069; makefile: 14
file content (10 lines) | stat: -rw-r--r-- 132 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10

use Test::More tests => 1;
use Set::Object qw(weak_set);

my $n = 1;
my $a = \$n;
my $set1 = weak_set();
$set1->insert($a);

pass;