Merge branch 'main' into i5169

Signed-off-by: Ayaz <20735482+ayazhafiz@users.noreply.github.com>
This commit is contained in:
Ayaz 2023-03-22 09:02:03 -04:00 committed by GitHub
commit 6d8ddcc583
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 169 additions and 19 deletions

View file

@ -1280,3 +1280,15 @@ fn str_to_dec() {
r#"Ok 1234.1234 : Result Dec [InvalidNumStr]"#,
);
}
#[test]
fn tuple() {
expect_success(
indoc!(
r#"
("a", 2u32)
"#
),
r#"("a", 2) : ( Str, U32 )*"#,
);
}