Compilation error due to a parameter with multiple type constraints
class X::Parameter::MultipleTypeConstraints does X::Comp { }
Compile time error thrown when a parameter has multiple type constraints. This is not allowed in Raku.0.
Example:
sub f(Cool Real $x) { }
dies with
Parameter $x may only have one prefix type constraint
Returns the name of the offensive parameter.