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