File: bug_16173.v

package info (click to toggle)
coq 8.20.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 44,116 kB
  • sloc: ml: 234,160; sh: 4,301; python: 3,270; ansic: 2,644; makefile: 882; lisp: 172; javascript: 63; xml: 24; sed: 2
file content (39 lines) | stat: -rw-r--r-- 880 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39

Section S.
  Variables (a:nat) (b:bool).

  Fail Set Default Proof Using ")".
  Fail Set Default Proof Using "a)".
  Fail Set Default Proof Using "(a . )".
  Fail Set Default Proof Using "(a .".
  Set Default Proof Using "".

  Lemma foo1 : True.
  Proof. trivial. Qed.

  Set Default Proof Using "()".
  Lemma foo2 : True.
  Proof. trivial. Qed.

  Set Default Proof Using "( )".
  Lemma foo2' : True.
  Proof. trivial. Qed.

  Set Default Proof Using "a b".
  Lemma foo3 : True.
  Proof. trivial. Qed.

  Set Default Proof Using "(b a)".
  Lemma foo4 : True.
  Proof. trivial. Qed.
End S.

Check foo1 : True.
Check foo2 : True.
Check foo2' : True.
Check foo3 : nat -> bool -> True.
Check foo4 : nat -> bool -> True.

Require Import Coq.ssr.ssreflect.
(* ssr makes "\*\)" parse differently so preprocessing has to make sure to insert a space *)
Set Default Proof Using "Type*".