Files

12 lines
112 B
Plaintext

bad int := 4
read_bad func() int {
return bad
}
derived int :: read_bad()
main func() void {
_ = derived
}