saved info and added test

This commit is contained in:
J.Teeuwissen 2023-05-26 15:56:18 +02:00
parent 9b58c0fb9c
commit b0705a00ad
No known key found for this signature in database
GPG key ID: DB5F7A1ED8D478AD
8 changed files with 106 additions and 27 deletions

View file

@ -3013,3 +3013,19 @@ fn rb_tree_fbip() {
"#
)
}
#[mono_test]
fn drop_specialize_after_struct() {
indoc!(
r#"
app "test" provides [main] to "./platform"
Tuple a b : { left : a, right : b }
main =
v = "value"
t = { left: v, right: v }
"result"
"#
)
}