summaryrefslogtreecommitdiff
path: root/transfer/examples/reflexive/Abstract.gf
diff options
context:
space:
mode:
Diffstat (limited to 'transfer/examples/reflexive/Abstract.gf')
-rw-r--r--transfer/examples/reflexive/Abstract.gf15
1 files changed, 15 insertions, 0 deletions
diff --git a/transfer/examples/reflexive/Abstract.gf b/transfer/examples/reflexive/Abstract.gf
new file mode 100644
index 000000000..0426defdc
--- /dev/null
+++ b/transfer/examples/reflexive/Abstract.gf
@@ -0,0 +1,15 @@
+abstract Abstract = {
+
+cat
+ S ; NP ; V2 ; Conj ;
+
+fun
+ PredV2 : V2 -> NP -> NP -> S ;
+ ReflV2 : V2 -> NP -> S ;
+ ConjNP : Conj -> NP -> NP -> NP ;
+
+ And, Or : Conj ;
+ John, Mary, Bill : NP ;
+ See, Whip : V2 ;
+
+}