mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-18 13:49:59 +01:00
8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
|
|
class Foo {
|
||
|
|
method() {
|
||
|
|
_field = "value"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
foreign class Bar is Foo {} // expect runtime error: Foreign class 'Bar' may not inherit from a class with fields.
|