mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
(defmethod gf ()) (defun f () (gf)) Produced a warning about an undefined function, even though it would be implicitly created by defmethod. Fixes lp#503095.
6 lines
70 B
Common Lisp
6 lines
70 B
Common Lisp
(defmethod gf503095 ()
|
|
(gf503095))
|
|
|
|
(defun f503095 ()
|
|
(gf503095))
|