aboutsummaryrefslogtreecommitdiff
path: root/tests/issues/test_issue_5265.odin
blob: f61f05b0a571d4e25c0c49667d0c3c684530475f (plain)
1
2
3
4
5
6
7
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)
}