lean4-htt/tests/lean/interactive/completion.lean
2021-04-05 14:00:22 +02:00

17 lines
441 B
Text

structure Foo where
foo : Nat
example (f : Foo) : f.
--^ textDocument/completion
example : Nat := 0 -- recover
example (f : Foo) : f.f
--^ textDocument/completion
example : Nat := 0 -- recover
example (f : Foo) : id f |>.
--^ textDocument/completion
example : Nat := 0 -- recover
example (f : Foo) : id f |>.f
--^ textDocument/completion