Rename multimorphic tests to capture niche

This commit is contained in:
Ayaz Hafiz 2022-07-01 15:56:06 -04:00 committed by ayazhafiz
parent 019ebd93f7
commit d08aecf55f
No known key found for this signature in database
GPG key ID: B443F7A3030C9AED
43 changed files with 889 additions and 91 deletions

View file

@ -1527,7 +1527,7 @@ fn tail_call_with_different_layout() {
}
#[mono_test]
fn multimorphic_lambda_set_capture() {
fn lambda_capture_niche_u8_vs_u64() {
indoc!(
r#"
capture : _ -> ({} -> Str)
@ -1549,7 +1549,7 @@ fn multimorphic_lambda_set_capture() {
}
#[mono_test]
fn multimorphic_lambdas_with_other_lambda_capture() {
fn lambda_capture_niches_with_other_lambda_capture() {
indoc!(
r#"
capture : a -> ({} -> Str)
@ -1575,7 +1575,7 @@ fn multimorphic_lambdas_with_other_lambda_capture() {
}
#[mono_test]
fn multimorphic_lambdas_with_non_capturing_function() {
fn lambda_capture_niches_with_non_capturing_function() {
indoc!(
r#"
capture : a -> ({} -> Str)
@ -1601,7 +1601,7 @@ fn multimorphic_lambdas_with_non_capturing_function() {
}
#[mono_test]
fn multimorphic_lambdas_have_captured_function_in_closure() {
fn lambda_capture_niches_have_captured_function_in_closure() {
indoc!(
r#"
Lazy a : {} -> a