projects
/
sbcl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
50e31619bbe109d3a2c71d7ba205812931afa031
[sbcl.git]
/
contrib
/
sb-introspect
/
test.lisp
1
;; Do not alter this file unless you edit test-driver.lisp to match
2
(declaim (optimize (debug 3)))
3
(in-package :cl-user)
4
5
(defun one (a b c) (+ a b c))
6
7
(defgeneric two (a b))
8
(defmethod two ((a number) b)
9
(* 2 a))
10
11
(defstruct three four five)
12
13
14