Files
Odin/tests/issues/test_issue_7167.odin
2026-08-01 19:48:54 +03:00

10 lines
185 B
Odin

// Tests issue #7167 https://github.com/odin-lang/Odin/issues/7167
package test_issues
import "core:fmt"
import "core:path/filepath"
main :: proc() {
fmt.printf(filepath.join({}))
}