summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-109529.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lint/issue-109529.fixed')
-rw-r--r--tests/ui/lint/issue-109529.fixed6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/ui/lint/issue-109529.fixed b/tests/ui/lint/issue-109529.fixed
new file mode 100644
index 000000000..5ad489073
--- /dev/null
+++ b/tests/ui/lint/issue-109529.fixed
@@ -0,0 +1,6 @@
+// run-rustfix
+
+fn main() {
+ for _ in 0..=255 as u8 {} //~ ERROR range endpoint is out of range
+ for _ in 0..=(255 as u8) {} //~ ERROR range endpoint is out of range
+}