---
source: crates/ruff_python_formatter/tests/fixtures.rs
input_file: crates/ruff_python_formatter/resources/test/fixtures/ruff/statement/break.py
---
## Input
```python
# leading comment
while True: # block comment
# inside comment
break # break comment
# post comment
```
## Output
```python
# leading comment
while True: # block comment
# inside comment
break # break comment
# post comment
```