![]() |
|
Navigation |
Synopsis Pattern matching has not been properly initialized.
Description Rascal:PatternMatching requires two ingredients:
Remedy: replace the subject by a non-void value.
Examples here is a (contrived) example that produces this error:
rascal>void dummy() { return; } void (): void dummy(); rascal>int n := dummy(); |stdin:///|(9,5,<1,9>,<1,14>): Uninitialized pattern match: trying to match a value of the type 'void' ![]() |