lean2/tests/lean/error_full_names.lean

11 lines
181 B
Text
Raw Normal View History

import data.nat
namespace foo
open nat
inductive nat : Type := zero, foosucc : nat → nat
check 0 + nat.zero --error
end foo
namespace foo
check nat.succ nat.zero --error
end foo