The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Dios;
use Test::More;

plan tests => 7;

my $NAME = 'Damian';

class Base1 {
    method basic { return 'basic' }
}

class Base2 {
    method more_basic { return 'more basic' }
}

class Demo is Base1 is Base2 {
    has Str $.name is req;

    method foo ($this: Str $newname, Int|Undef :$other) {
        ::is $name, $NAME => 'Name correct';

        $name = 'Other';
        ::is $this->get_name, 'Other' => 'Assignment to name correct';

        return 1;
    }
}

my $obj = Demo->new({ name => $NAME });

::is $obj->basic, 'basic' => 'Inherited Base1 correctly';
::is $obj->more_basic, 'more basic' => 'Inherited Base2 correctly';

::is $obj->foo('me'), 1      => 'Called foo() correctly';
::is $obj->get_name, 'Other' => 'Retained updated name correctly';

::ok !defined eval{ $obj->set_name('etc'); 1; } => 'Setter failed, as expected';

done_testing;