Henry Nelson

Results 2 comments of Henry Nelson

You can elide the `tagged` as well and observed the same behavior. e.g., ``` type Foo val x: Unit type Bar extends Foo val x: Unit ``` Identical CoreWyvernIL is...

Similar test case: ``` require stdout if (true) stdout.print("good") stdout.print("good") stdout.print("good") stdout.print("good") stdout.print("error"), stdout.print("good") stdout.print("good") stdout.print("good") stdout.print("good") else unit ``` Observed behavior: ``` Error when running parseExpression on input "stdout.print("good")...