From 5469fee677c29f3dadf2f8d9bf07c91ad65ba8d8 Mon Sep 17 00:00:00 2001 From: Bhuminjay Soni Date: Fri, 5 Dec 2025 13:59:32 +0530 Subject: [PATCH] Delete crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__semantic_syntax_error_annonated_global.py_3.14.snap --- ...syntax_error_annonated_global.py_3.14.snap | 46 ------------------- 1 file changed, 46 deletions(-) delete mode 100644 crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__semantic_syntax_error_annonated_global.py_3.14.snap diff --git a/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__semantic_syntax_error_annonated_global.py_3.14.snap b/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__semantic_syntax_error_annonated_global.py_3.14.snap deleted file mode 100644 index cea88632e7..0000000000 --- a/crates/ruff_linter/src/snapshots/ruff_linter__linter__tests__semantic_syntax_error_annonated_global.py_3.14.snap +++ /dev/null @@ -1,46 +0,0 @@ ---- -source: crates/ruff_linter/src/linter.rs ---- -invalid-syntax: annotated name `a` can't be global - --> resources/test/fixtures/semantic_errors/annonated_global.py:4:5 - | -2 | def f1(): -3 | global a -4 | a: str = "foo" - | ^ -5 | -6 | b: int = 1 - | - -invalid-syntax: annotated name `b` can't be global - --> resources/test/fixtures/semantic_errors/annonated_global.py:10:9 - | - 8 | def inner(): - 9 | global b -10 | b: str = "nested" - | ^ -11 | -12 | c: int = 1 - | - -invalid-syntax: annotated name `c` can't be global - --> resources/test/fixtures/semantic_errors/annonated_global.py:15:5 - | -13 | def f2(): -14 | global c -15 | c: list[str] = [] - | ^ -16 | -17 | d: int = 1 - | - -invalid-syntax: annotated name `d` can't be global - --> resources/test/fixtures/semantic_errors/annonated_global.py:20:5 - | -18 | def f3(): -19 | global d -20 | d: str - | ^ -21 | -22 | e: int = 1 - |