Files
Odin/tests/issues/test_issue_7167.odin

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({}))
}