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 37 38 39 40 41 42
|
;; -*-theme-d-*-
;; Copyright (C) 2008-2013 Tommi Höynälänmaa
;; Distributed under GNU General Public License version 3,
;; see file doc/GPL-3.
;; Expected results: translation and running OK
(define-proper-program (tests test14)
(import (standard-library core)
(standard-library console-io))
(define-class <a>
(fields
(contents (:mutable-vector <real>) public module)))
(define-class <b>
(superclass <a>)
(fields
(fld1 <integer> public module)))
(define-class <c>
(superclass <a>)
(fields
(fld1 <string> public module)))
(define-param-proc-alt my-proc (%type)
(lambda (((arg %type)) %type pure)
(create <c> (make-mutable-vector <real> 5 2.0) "abc")))
(define main
(lambda (() <integer> nonpure)
(let* ((obj <a> (cast <a> (create <b> (make-mutable-vector <real> 3 -1.5) 1)))
(obj2 (my-proc obj)))
(console-display
(mutable-vector-ref (field-ref obj2 'contents) 0))
(console-newline)
0))))
|