1
0
forked from Mirror/wren
Files
wren/test/language/inheritance/inherit_from_null_class.wren
Chayim Refael Friedman 44d6d20586 Do not allow inheriting built-in classes Num, Bool and Null (#831)
* Do not allow inheriting `Num`, `Bool` and `Null`. fixes #830
2020-10-26 08:39:36 -07:00

2 lines
111 B
Plaintext

class Subclass is Null {} // expect runtime error: Class 'Subclass' cannot inherit from built-in class 'Null'.