mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-01 19:02:13 +00:00
22 lines
427 B
Odin
22 lines
427 B
Odin
// Tests issue #2466 https://github.com/odin-lang/Odin/issues/2466
|
|
package test_issues
|
|
|
|
import "core:testing"
|
|
|
|
Bug :: struct {
|
|
val: int,
|
|
arr: []int,
|
|
}
|
|
|
|
@test
|
|
test_compound_literal_local_reuse :: proc(t: ^testing.T) {
|
|
v: int = 123
|
|
bug := Bug {
|
|
val = v,
|
|
arr = {42},
|
|
}
|
|
testing.expectf(t, bug.val == 123, "expected 123, found %d", bug.val)
|
|
testing.expectf(t, bug.arr[0] == 42, "expected 42, found %d", bug.arr[0])
|
|
}
|
|
|