# New Ticket Created by Timo Paulssen
# Please include the string: [perl #118263]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=118263 >
In this code
role Command {
method execute { ... }
}
class EchoCommand is Command {
method execute(Str $echostring) { shell "echo '$echostring'" }
}
gives the following error:
===SORRY!===
Method 'execute' must be implemented by Command because it is required by a role
at foobar.p6:6
------>
It would be cool if it would acknowledge, that there is a message, but the
signatures don't match.