mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-11 14:18:42 +01:00
9 lines
199 B
Plaintext
9 lines
199 B
Plaintext
var ClosureType
|
|
|
|
{
|
|
var a = "a"
|
|
ClosureType = fn () { System.print(a) }.type
|
|
}
|
|
|
|
class Subclass is ClosureType {} // expect runtime error: Class 'Subclass' cannot inherit from built-in class 'Fn'.
|