···2929}
30303131// https://github.com/gleam-lang/gleam/issues/5612
3232-pub fn no_duplicate_let_after_case_with_same_named_variable() {
3232+pub fn no_duplicate_let_after_case_with_same_named_variable_test() {
3333 let x = case #(1, 2) {
3434 #(_, x) -> x
3535 }
3636-3736 assert x == 2
3837}
39384039// https://github.com/gleam-lang/gleam/issues/5612
4141-pub fn no_duplicate_let_after_case_with_same_named_variable_with_declaration_before_and_after() {
4040+pub fn no_duplicate_let_after_case_with_same_named_variable_with_declaration_before_and_after_test() {
4241 let x = 0
4342 let x = x
4443 let x = case #(1, 2) {
4544 #(_, x) -> x
4645 }
4747-4846 let x = x
4947 assert x == 2
5048}