Fixed whitespace issue in typing sections and added test cases.

This commit is contained in:
2017-06-18 05:18:52 +02:00
parent 6ce4eecb18
commit 230844c3ae
6 changed files with 59 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
(define
(domain mystery-typed)
(:requirements :typing)
(:types
foo - object
bar - (either foo foo)
)
)

View File

@@ -0,0 +1,9 @@
(define (domain miconic)
(:requirements :typing)
(:types
object
passenger - object
floor - object
)
)