1.0.13.45: close the fd before deleting / moving files on CLOSE :ABORT T
[sbcl/simd.git] / tests / package-ctor-bug.lisp
blobe4285f4b5739d4a2385b28c4e4fd60cc40beb2a1
1 (defpackage "PACKAGE-CTOR-BUG"
2 (:use "CL")
3 (:export "TEST"))
5 (in-package "PACKAGE-CTOR-BUG")
7 (defclass fooass ()
8 ((flot :initarg :flot :reader flot)))
10 (defun test ()
11 (flot (make-instance 'fooass :flot 3)))