1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
;; -*-theme-*-
;; Copyright (C) 2026 Tommi Höynälänmaa
;; Distributed under GNU Lesser General Public License version 3,
;; see file doc/LGPL-3.
;; Expected results: translation and running OK
(define-proper-program (tests test946)
(import (standard-library core)
(standard-library console-io))
(define-simple-method get-class-name
(((cl <class>)) <string> pure)
(field-ref (cast <normal-class> cl) 'str-name))
(define-simple-method mymethod
(((i <integer>)) <string> pure)
(get-class-name (class-of i)))
(define-class <a>
(fields
(str <string> public public)))
(define-class <b>
(inheritance-access hidden)
(fields
(s <symbol> public public)))
(define-main-proc (() <none> nonpure)
(console-display-line (mymethod 2))
(console-display-line (get-class-name (class-of 1.5)))
(console-display-line (get-class-name (class-of (create <a> "hello"))))
(console-display-line (get-class-name (class-of (create <b> 'world))))))
|