From 6af1b3f9b55e95bfee051d73bdbb2257875d97bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 30 Oct 2023 00:16:53 +0100 Subject: Add tests for module introspection. --- tests/test-module-tree/a.scm | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 tests/test-module-tree/a.scm (limited to 'tests/test-module-tree/a.scm') diff --git a/tests/test-module-tree/a.scm b/tests/test-module-tree/a.scm new file mode 100644 index 00000000..c332b884 --- /dev/null +++ b/tests/test-module-tree/a.scm @@ -0,0 +1,6 @@ +(define-module (a) + :use-module (srfi srfi-1) + :export (f)) + +(define (f x) + (* x 2)) -- cgit v1.2.3