The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

use Test::More 'tests' => 1;
use Config;

SKIP: {
    skip "Threads not available", 1 unless $Config{useithreads};
    my $out = `$^X -Mblib t/threads.p 2>&1`;
    is($out, ''     => 'No destruct error');
}

# EOF