lean4-htt/tests/lean/interactive/compNamespace.lean
Markus Himmel 17c18752ff
feat: IntX operations and conversion theory (#7592)
This PR adds theory about signed finite integers relating operations and
conversion functions.
2025-03-27 15:17:56 +00:00

22 lines
378 B
Text

namespace Foo
namespace LongNamespaceExample
def x := 10
#check LongNam
--^ textDocument/completion
end LongNamespaceExample
#check LongNam
--^ textDocument/completion
end Foo
#check Foo.
--^ textDocument/completion
#check Foo.LongN
--^ textDocument/completion
open Foo
#check LongNam
--^ textDocument/completion