This now works as of c907d37:
$ cat 61774
class A {
has @something is rw;
method doit {
@something = <1 2 3>;
say self!something;
}
my method something {
"Hello, world";
}
}my A $a .= new; $a.doit; $ ./perl6 61774 Hello, world Assigning ticket for spectest verification...and then we can close the ticket. Thanks! Pm
