summaryrefslogtreecommitdiffstats
path: root/t/lib/Inferred/Foo.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/Inferred/Foo.pm')
-rw-r--r--t/lib/Inferred/Foo.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/lib/Inferred/Foo.pm b/t/lib/Inferred/Foo.pm
new file mode 100644
index 0000000..af60637
--- /dev/null
+++ b/t/lib/Inferred/Foo.pm
@@ -0,0 +1,13 @@
+package Inferred::Foo;
+use Moose;
+
+has bar => (
+ is => 'ro',
+ isa => 'Inferred::Bar',
+ required => 1,
+);
+
+__PACKAGE__->meta->make_immutable;
+no Moose;
+
+1;