The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package UnknownType;

use strict;
use warnings;

use InnerUnknownType;


sub bar
{
    my $iut = InnerUnknownType->new;

# the #line directive helps us guarantee that we'll always know what line number to expect the error
# on, regardless of how much this test module changes
#line 1133
    $iut->foo(42);
}


1;