[perl #128810] Leading multi-line declarator block on role breaks stubs in composition

2017-09-22 Thread Brian S. Julin via RT
On Mon, 01 Aug 2016 21:44:28 -0700, lue wrote: > m: #|(abc) role A { method foo { ... } }; class B does > A { method foo { "OK" } }; say B.foo > rakudo-moar f1313d: OUTPUT«===SORRY!=== Error while > compiling ␤Method 'foo' must be implemented by A because it is > required by a role␤at :1␤» > m:

[perl #128810] Leading multi-line declarator block on role breaks stubs in composition

2016-08-01 Thread via RT
# New Ticket Created by Faye # Please include the string: [perl #128810] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128810 > m: #|(abc) role A { method foo { ... } }; class B does A { method foo { "OK" } }; say B.foo ra