merge main

This commit is contained in:
Bryce Miller 2023-06-07 20:36:54 -04:00
commit e463ccf4a6
No known key found for this signature in database
GPG key ID: F1E97BF8DF152350
59 changed files with 1192 additions and 706 deletions

View file

@ -1854,8 +1854,7 @@ fn instantiate_annotated_as_recursive_alias_multiple_polymorphic_expr() {
)
}
#[mono_test]
#[cfg(not(debug_assertions))]
#[mono_test(large_stack = "true")]
fn encode_derived_record_one_field_string() {
indoc!(
r#"
@ -1872,8 +1871,7 @@ fn encode_derived_record_one_field_string() {
)
}
#[mono_test]
#[cfg(not(debug_assertions))]
#[mono_test(large_stack = "true")]
fn encode_derived_record_two_field_strings() {
indoc!(
r#"
@ -1890,8 +1888,7 @@ fn encode_derived_record_two_field_strings() {
)
}
#[mono_test]
#[cfg(not(debug_assertions))]
#[mono_test(large_stack = "true")]
fn encode_derived_nested_record_string() {
indoc!(
r#"
@ -3078,3 +3075,16 @@ fn record_update() {
"#
)
}
#[mono_test(mode = "test")]
fn dbg_in_expect() {
indoc!(
r###"
interface Test exposes [] imports []
expect
dbg ""
Bool.true
"###
)
}