mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 22:28:45 +01:00
6 lines
195 B
Plaintext
6 lines
195 B
Plaintext
// Error is on last line because this assumes "notDefined" is an implicitly
|
|
// defined global until it reaches the end of the file.
|
|
fn () {
|
|
System.print(notDefined) // expect error line 6
|
|
}()
|