diff options
Diffstat (limited to 'mathcomp/ssrtest')
| -rw-r--r-- | mathcomp/ssrtest/Make | 1 | ||||
| -rw-r--r-- | mathcomp/ssrtest/unfold_Opaque.v | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mathcomp/ssrtest/Make b/mathcomp/ssrtest/Make index 6033c13..836e12a 100644 --- a/mathcomp/ssrtest/Make +++ b/mathcomp/ssrtest/Make @@ -36,6 +36,7 @@ tc.v testmx.v typeof.v unkeyed.v +unfold_Opaque.v view_case.v wlogletin.v wlog_suff.v diff --git a/mathcomp/ssrtest/unfold_Opaque.v b/mathcomp/ssrtest/unfold_Opaque.v new file mode 100644 index 0000000..1ebcbe4 --- /dev/null +++ b/mathcomp/ssrtest/unfold_Opaque.v @@ -0,0 +1,8 @@ +Require Import ssreflect. + +Definition x := 3. +Opaque x. + +Goal x = 3. +Fail rewrite /x. +Admitted.
\ No newline at end of file |
