summaryrefslogtreecommitdiff
path: root/test/manual/indent/scheme.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test/manual/indent/scheme.scm')
-rw-r--r--test/manual/indent/scheme.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/manual/indent/scheme.scm b/test/manual/indent/scheme.scm
new file mode 100644
index 00000000000..9053a8743e4
--- /dev/null
+++ b/test/manual/indent/scheme.scm
@@ -0,0 +1,23 @@
+;; Testing sexp-comments
+
+(define a #;(hello) there)
+
+(define a #;1 there)
+
+(define a #;"asdf" there)
+
+(define a ;; #;(hello
+ there)
+
+(define a #;(hello
+ there) 2)
+
+(define a #;(hello
+ #;(world))
+ and)
+ there) 2)
+
+(define a #;(hello
+ #;"asdf" (world
+ and)
+ there) 2)