Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created October 2, 2019 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/1bdf9422213a9245b2c3f328ee11e673 to your computer and use it in GitHub Desktop.
Save Whateverable/1bdf9422213a9245b2c3f328ee11e673 to your computer and use it in GitHub Desktop.
committable6
use lib 'data/all-modules/cpan/ELIZABETH/Method-Also'; use Method::Also; role A { proto method my_method (|) is also<my-method> { * }; multi method my_method (Str $a) { say 'Str!'; }; multi method my_method (Int $b) { say 'Int!'; }; }; A.new.my_method(42); A.new.my_method('b'); A.new.my-method(42)
¦«2015.12,2016.01.1,2016.02,2016.03,2016.04,2016.05»:
Int!
Str!
Use of uninitialized value of type Any in string context
Any of .^name, .perl, .gist, or .say can stringify undefined things, if needed. in block <unit> at /tmp/S9IQPtElzK line 1
Cannot call my_method(A, Int); none of these signatures match:
in block <unit> at /tmp/S9IQPtElzK line 1
«exit code = 1»
¦«2016.06,2016.07.1»:
Int!
Str!
Use of uninitialized value of type Any in string context
Any of .^name, .perl, .gist, or .say can stringify undefined things, if needed. in block <unit> at /tmp/S9IQPtElzK line 1
Cannot resolve caller my_method(A, Int); none of these signatures match:
in block <unit> at /tmp/S9IQPtElzK line 1
«exit code = 1»
¦«2016.08.1»:
Int!
Str!
Use of uninitialized value of type Any in string context.
Methods .^name, .perl, .gist, or .say can be used to stringify it to something meaningful. in block <unit> at /tmp/S9IQPtElzK line 1
Cannot resolve caller my_method(A, Int); none of these signatures match:
in block <unit> at /tmp/S9IQPtElzK line 1
«exit code = 1»
¦«2016.09,2016.10,2016.11,2016.12,2017.01,2017.02,2017.03,2017.04.3,
2017.05»:
Int!
Str!
Use of uninitialized value of type Any in string context.
Methods .^name, .perl, .gist, or .say can be used to stringify it to something meaningful.
in block <unit> at /tmp/S9IQPtElzK line 1
Cannot resolve caller my_method(A, Int); none of these signatures match:
in block <unit> at /tmp/S9IQPtElzK line 1
«exit code = 1»
¦«2017.06,2017.07,2017.08»:
Int!
Str!
Cannot resolve caller my_method(A, Int); Routine does not have any candidates. Is only the proto defined?
in block <unit> at /tmp/S9IQPtElzK line 1
«exit code = 1»
¦«2017.09,2017.10,2017.11,2017.12,2018.01,2018.02.1,2018.03,2018.04.1,
2018.05,2018.06,2018.08,2018.09,2018.10,2018.11»:
Int!
Cannot resolve caller my_method(A, Int); Routine does not have any candidates. Is only the proto defined?
in block <unit> at /tmp/S9IQPtElzK line 1
Str!
«exit code = 1»
¦«2018.12,2019.03.1,2019.07.1,HEAD(168c9c2)»:
Int!
Cannot resolve caller my_method(A:D, Int:D); Routine does not have any candidates. Is only the proto defined?
in block <unit> at /tmp/S9IQPtElzK line 1
Str!
«exit code = 1»
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment