diff options
| author | lfenzo <lfenzo@protonmail.com> | 2022-07-29 19:50:40 -0300 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-08-03 12:05:30 -0700 |
| commit | 64f3f7415debf0e660335b42ce2be2712507d7e5 (patch) | |
| tree | 2b67a1a0f1241ad683a01c9967dfd333ab3b14d1 /tests/query | |
| parent | Updated nvim-tresitter.txt doc (diff) | |
| download | nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.gz nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.bz2 nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.lz nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.xz nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.tar.zst nvim-treesitter-64f3f7415debf0e660335b42ce2be2712507d7e5.zip | |
(Broken test fixed) Updated static-namespace-functins.cpp to use function.call
Diffstat (limited to 'tests/query')
| -rw-r--r-- | tests/query/highlights/cpp/static-namespace-functions.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/query/highlights/cpp/static-namespace-functions.cpp b/tests/query/highlights/cpp/static-namespace-functions.cpp index 1658d5117..2bea488a3 100644 --- a/tests/query/highlights/cpp/static-namespace-functions.cpp +++ b/tests/query/highlights/cpp/static-namespace-functions.cpp @@ -3,10 +3,10 @@ int main() { B::foo(); - // ^ @function + // ^ @function.call Foo::A::foo(); - // ^ @function + // ^ @function.call Foo::a::A::foo(); - // ^ @function + // ^ @function.call return 0; } |
