Files
Odin/tests/issues/test_issue_6484.odin
2026-03-26 20:10:24 -04:00

18 lines
255 B
Odin

// Tests issue #6484 https://github.com/odin-lang/Odin/pull/6484
package test_issues
foreign import lib "this_library_does_not_exist"
foreign lib {
foo :: proc(int) ---
when true {}
when true {}
bar :: proc() ---
}
foo_bar :: proc {
foo,
bar,
}