diff options
Diffstat (limited to 'tests/012')
-rw-r--r-- | tests/012/oop.expected | 1 | ||||
-rw-r--r-- | tests/012/oop.tl | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/tests/012/oop.expected b/tests/012/oop.expected index f0bb554f..433a51d2 100644 --- a/tests/012/oop.expected +++ b/tests/012/oop.expected @@ -11,6 +11,7 @@ animal canine collie poodle +colliecanine #S(b a 1 b 2 c 3) #S(d a nil b -2 c 3) (10 20 300 42 42) diff --git a/tests/012/oop.tl b/tests/012/oop.tl index 24cf2726..52fe30bb 100644 --- a/tests/012/oop.tl +++ b/tests/012/oop.tl @@ -40,6 +40,9 @@ (pprinl (new poodle)) +(mapcar (umeth print *stdout*) (list (new collie) (new dog))) +(put-line) + (defstruct b nil (:instance a 1) (:instance b 2) |