bolt/bootstrap/cxx/test/checker/test_equality_tapp.bolt
Sam Vervaeck 7ac3c39164
Make TypeEnv sort variables on whether they are a var or a function
Fixes RecordDeclaration and VariantDeclaration not working correctly
2024-01-21 03:42:25 +01:00

10 lines
133 B
Text

enum MyList a.
Nil
Pair a (MyList a)
let x : MyList Int
@expect_diagnostic 2010
let y : MyList Bool = x
let z : MyList String