The last search was:
The search can be accessed using Alt-F
The search response can be shortened by excluding the extra information line (Alt-E)
The search engine can perform a strict search (only the characters in the search box) or a loose search (Alt-L)
Search through headings in all web-pages (Alt-H)
Search through all indexed items (Alt-I)
Search in the names of composite pages, which combine similar information from the main web pages (Alt-C)
Search through the names of the main web pages (Alt-P)
Once a search candidate has been chosen, it can be opened in a new tab or in the current tab (Alt-Q)
If all else fails, an item is added to use the Google search engine on the whole site
Exit this page by pressing <Escape>, or clicking on X or on the background.
Error due to a failed typecheck during return
return
class X::TypeCheck::Return is X::TypeCheck { }
Thrown when a return type check fails.
For example
sub f(--> Int) { "foo" }f();CATCH { default { put .^name, ': ', .Str } };# OUTPUT: «X::TypeCheck::Return: Type check failed for return value; expected Int but got Str ("foo")»