#!/usr/bin/perl
# This is automatically generated by author/import-moose-test.pl.
# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
use lib "t/lib";
use MooseCompat;
use strict;
use warnings;
use Test::More;
use Test::Exception;
=pod
This was a bug, but it is fixed now. This
test makes sure it does not creep back in.
=cut
{
package Foo;
use Mouse;
::lives_ok {
has 'bar' => (
is => 'ro',
isa => 'Int',
lazy => 1,
default => 10,
);
} '... this didnt die';
}
done_testing;