Import Moose/t/010_basics/*.t
[gitmo/Mouse.git] / t / lib / Bar.pm
diff --git a/t/lib/Bar.pm b/t/lib/Bar.pm
new file mode 100755 (executable)
index 0000000..c9d0ab0
--- /dev/null
@@ -0,0 +1,10 @@
+
+package Bar;
+use Mouse;
+use Mouse::Util::TypeConstraints;
+
+type Baz => where { 1 };
+
+subtype Bling => as Baz => where { 1 };
+
+1;
\ No newline at end of file