mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-06 06:38:20 +00:00
18 lines
255 B
Odin
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,
|
|
}
|
|
|