Files
Odin/tests/issues/test_issue_6165.odin
Jeroen van Rijn 1c529d8cb2 Fix #6165
2026-01-24 14:06:31 +01:00

13 lines
368 B
Odin

// Tests issue #6165 https://github.com/odin-lang/Odin/issues/6165
package test_issues
import "core:testing"
@(test)
test_issue_6165 :: proc(t: ^testing.T) {
TXT :: #load(ODIN_ROOT + "LICENSE")
// We don't really care about the length. The test is whether this compiles, or
// if the compiler says it can't find the file we know to exist.
assert(len(TXT) > 0)
}