summaryrefslogtreecommitdiff
path: root/test/references/all.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/references/all.lua')
-rw-r--r--test/references/all.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/references/all.lua b/test/references/all.lua
index 9395df86..3c376c21 100644
--- a/test/references/all.lua
+++ b/test/references/all.lua
@@ -126,3 +126,16 @@ end
local v1 = Master:foobar("", Dog)
v1.<!eat!>()
]]
+
+TEST [[
+---@class A
+A = {}
+
+function A:<~TestA~>()
+end
+
+---@param param A
+function TestB(param)
+ param:<!TestA!>()
+end
+]]