This commit is contained in:
Jeroen van Rijn
2025-06-03 11:18:11 +02:00
parent ccef390c0c
commit 82dfb43663
5 changed files with 68 additions and 53 deletions
+8
View File
@@ -0,0 +1,8 @@
// Tests issue #5265 https://github.com/odin-lang/Odin/issues/5265
package test_issues
main :: proc() {
a: i128 = 1
assert(1 / a == 1)
assert(a / 1 == 1)
}