From 3756a3e47221c3b0133724a482341a9010076a9e Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 3 Jan 2023 23:50:50 -0500 Subject: read workspace/symbols containerName --- test/lsp/multidef.cpp | 45 ++++++++++++++++++++++++++++++++------------- 1 file changed, 32 insertions(+), 13 deletions(-) (limited to 'test/lsp') diff --git a/test/lsp/multidef.cpp b/test/lsp/multidef.cpp index 6cd5e1a..b9511d0 100644 --- a/test/lsp/multidef.cpp +++ b/test/lsp/multidef.cpp @@ -1,16 +1,35 @@ - -void f(int x, int y) { -} - - -void f(int x) { +class V { + void f(int x, int y) { + } + + + void f(int x) { + } + + void f(const char *s) { + } + + + void g() { + } + void g(int y) { + } } -void f(const char *s) { -} - - -void g() { -} -void g(int y) { +class W { + void f(int x, int y) { + } + + + void f(int x) { + } + + void f(const char *s) { + } + + + void g() { + } + void g(int y) { + } } -- cgit v1.2.3