feat: record modules are no longer unimplemented for no fields

refactor: remove some clones and use a ref instead
test: add acceptance test 81
This commit is contained in:
microproofs
2023-05-14 18:22:07 -04:00
committed by Kasey
parent 3356e2ecd0
commit 4838ebd39e
6 changed files with 106 additions and 70 deletions

View File

@@ -0,0 +1,4 @@
pub type Thing {
FFF
GGG(Int)
}

View File

@@ -0,0 +1,15 @@
use other.{FFF, GGG}
test thing1() {
let x =
other.FFF
x == FFF
}
test thing2() {
let x =
other.GGG(2)
x == GGG(2)
}