cbc81ea6c5
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
10 lines
174 B
Text
10 lines
174 B
Text
import logic
|
|
|
|
check
|
|
let f x y := x ∧ y,
|
|
g x := f x x,
|
|
a := g true
|
|
in λ (x : a),
|
|
let h x y := f x (g y),
|
|
b := h
|
|
in b
|