Files
Odin/tests/issues/test_issue_6979.odin
RoBaertschi c44740f570 Fix #6979
2026-07-09 14:14:05 +02:00

8 lines
165 B
Odin

// Tests issue https://github.com/odin-lang/Odin/issues/6979
package test_issues
error :: proc() -> typeid {
data :: struct{type: typeid}{int}
return data.type
}