The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

# package for t/typeload_moose.t
# (see comments there for why check_paramized_sref is here)
package Foo::Bar;
use Moose;
fun => { defaults => 'function', reify_type => 'moose' },
method => { defaults => 'method', reify_type => 'moose' },
};
method check_int (Int $bar) {};
method check_paramized_sref (ScalarRef[Num] $bar) {};
1;