import more Method::Signatures tests
[p5sagit/Function-Parameters.git] / t / foreign / Method-Signatures / lib / MooseLoadTest.pm
CommitLineData
700071de 1# package for t/typeload_moose.t
2# (see comments there for why check_paramized_sref is here)
3
4package Foo::Bar;
5
6use Moose;
7use Function::Parameters qw(:strict);
8
9method check_int (Int $bar) {};
10method check_paramized_sref (ScalarRef[Num] $bar) {};
11
121;