lean4-htt/tests/lean/interactive/complete_namespace.lean
Sebastian Ullrich ed4275ae17 fix(frontends/lean/builtin_cmds): do not complete after namespace
Most identifiers used with the command are not namespaces yet
2017-01-10 14:42:48 -08:00

11 lines
131 B
Text

prelude
inductive foo.bar
open foo
--^ "command": "complete"
namespace foo
open bar
--^ "command": "complete"
end foo