The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! perl

use strict;
use warnings;

use Test::More tests => 1;
use Test::Exception;
use threads::lite qw/spawn/;

lives_ok { my $thread = spawn(undef, sub { 42 } ) } "Passing undef as an option should be handled properly";