fix(tests/lean): subtype notation is not in the top-level anymore

This commit is contained in:
Leonardo de Moura 2015-12-28 09:04:11 -08:00
parent c52ffda0e0
commit fe66e2aa4a
7 changed files with 7 additions and 5 deletions

View file

@ -1,5 +1,5 @@
import data.pnat import data.pnat
open pnat open pnat subtype
print pnat print pnat

View file

@ -1 +1,2 @@
open subtype
print axioms print axioms

View file

@ -1 +1 @@
print axioms open subtype print axioms

View file

@ -1,3 +1,4 @@
open subtype
theorem foo1 : 0 = (0:num) := theorem foo1 : 0 = (0:num) :=
rfl rfl

View file

@ -1,3 +1,3 @@
import data.nat import data.nat
open nat open nat subtype
check { x : nat | x > 0} check { x : nat | x > 0}

View file

@ -1,4 +1,4 @@
-- import data.subtype -- import data.subtype
open nat open nat subtype
check {x : nat| x > 0 } check {x : nat| x > 0 }

View file

@ -1,4 +1,4 @@
example (f : nat → nat) (a b : nat) : f a = a → f (f a) = a := open subtype example (f : nat → nat) (a b : nat) : f a = a → f (f a) = a :=
begin begin
intro h₁, intro h₁,
subst h₁ -- ERROR subst h₁ -- ERROR