mirror of
https://github.com/odin-lang/Odin.git
synced 2026-05-24 20:59:52 +00:00
10 lines
126 B
Odin
10 lines
126 B
Odin
// Test issue #6594 https://github.com/odin-lang/Odin/issues/6594
|
|
package test_issues
|
|
|
|
a := a
|
|
|
|
main :: proc() {
|
|
_ = a + 1
|
|
}
|
|
|