diff options
Diffstat (limited to 'test-suite/success/implicit.v')
| -rw-r--r-- | test-suite/success/implicit.v | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test-suite/success/implicit.v b/test-suite/success/implicit.v new file mode 100644 index 0000000000..5f0067412c --- /dev/null +++ b/test-suite/success/implicit.v @@ -0,0 +1,9 @@ +(* Implicit on section variables *) +(* Example submitted by David Nowak *) + +Set Implicit Arguments. +Section Spec. +Variable A:Set. +Variable op : (A:Set)A->A->Set. +Infix 6 "#" op. +Check (x:A)(x # x). |
