mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-31 02:12:04 +00:00
8 lines
159 B
Odin
8 lines
159 B
Odin
// 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)
|
|
} |