Type definitions should not be accepted after the first value definition. E.g., the following program should be rejected by the parser. game Error_TypeDefinitionAfterValueDefinition x : Int x = 3 type Foo = {A,B} y : Foo y = A
Type definitions should not be accepted after the first value definition. E.g., the following program should be rejected by the parser.