summaryrefslogtreecommitdiff
path: root/test-suite/output/RecordMissingField.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/RecordMissingField.v')
-rw-r--r--test-suite/output/RecordMissingField.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/output/RecordMissingField.v b/test-suite/output/RecordMissingField.v
new file mode 100644
index 00000000..84f1748f
--- /dev/null
+++ b/test-suite/output/RecordMissingField.v
@@ -0,0 +1,8 @@
+(** Check for error message when missing a record field. Error message
+should contain missing field, and the inferred type of the record **)
+
+Record point2d := mkPoint { x2p: nat; y2p: nat }.
+
+
+Definition increment_x (p: point2d) : point2d :=
+ {| x2p := x2p p + 1; |}.