File: lock.v

package info (click to toggle)
coq-hierarchy-builder 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,988 kB
  • sloc: makefile: 109
file content (21 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From HB Require Import structures.

HB.lock Definition foo := 3.

Definition nat1 := nat.

HB.lock Definition bar : nat1 := 3.

HB.lock Definition baz n : nat := 3 + n.

Module Import X.

Axiom bigbody : Type -> Type -> Type.
Axiom bigop : forall R I : Type, R -> list I -> (I -> bigbody R I) -> R.

HB.lock Definition big := bigop.

End X.

About big.