mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-13 03:10:29 +00:00
8 lines
165 B
Odin
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
|
|
}
|