diff options
Diffstat (limited to 'Test/test1/Orderings.bpl')
-rw-r--r-- | Test/test1/Orderings.bpl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Test/test1/Orderings.bpl b/Test/test1/Orderings.bpl new file mode 100644 index 00000000..be0502fa --- /dev/null +++ b/Test/test1/Orderings.bpl @@ -0,0 +1,8 @@ +
+type C;
+
+const c1:C;
+const c2:C extends c1;
+const c0:C extends a; // error: parent of wrong type
+
+const a:int;
|