1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00

Fix bug in the prelude.

This commit is contained in:
Patrick Thomson 2019-10-21 15:26:06 -04:00
parent a273f5881c
commit c6779b7fb2

View File

@ -8,7 +8,7 @@
object <- type "object" #unit #record{};
str <- type "str" object #record { };
str.__class.__new__ = \contents -> instance str contents #record{};
str.__class.__new__ = (\contents -> instance str contents #record{});
#record { type: type, object: object, string: string }
#record { type: type, object: object, str: str }
}