aboutsummaryrefslogtreecommitdiff
path: root/tools/odinfmt/tests/attributes.odin
blob: 6e55c21d2b4ea5c03f4471ea20be331066dfe010 (plain)
1
2
3
4
5
6
7
8
9
10
package odinfmt_test

main :: proc() {
	#no_bounds_check for i := 0; i < 100; i += 1 {
	}

	#no_bounds_check buf = buf[8:]
}

procedure_no_bounds_check :: proc() where 1 == 1 #no_bounds_check {}