The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package URT::ObjWithHash;

use warnings;
use strict;

use URT;
class URT::ObjWithHash {
    has => [
        myhash1 => { is => 'HASH' },
        mylist => { is => 'ARRAY' },
    ],
};

1;