diff --git a/crates/compiler/test_gen/src/gen_abilities.rs b/crates/compiler/test_gen/src/gen_abilities.rs index 69e144d1cd..5481e04b26 100644 --- a/crates/compiler/test_gen/src/gen_abilities.rs +++ b/crates/compiler/test_gen/src/gen_abilities.rs @@ -1306,4 +1306,13 @@ mod hash_immediate { RocList ) } + + #[test] + fn list_string() { + assert_evals_to!( + &build_test(r#"["ab", "cd", "ef"]"#), + RocList::from_slice(&[97, 98, 99, 100, 101, 102]), + RocList + ) + } }