diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-23 23:46:53 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-23 23:46:53 +0800 |
commit | 3cadbfc7419542a8b56f0996bfbfbda146a30ea5 (patch) | |
tree | 216f4c4afff1240c84b395901bf7a7b0a9f78239 /test | |
parent | 0652fa586d62408e28d8f7d253aa96381d357bc8 (diff) | |
download | lua-language-server-3cadbfc7419542a8b56f0996bfbfbda146a30ea5.zip |
fix infer of `unknown and unknown`
Diffstat (limited to 'test')
-rw-r--r-- | test/diagnostics/common.lua | 7 | ||||
-rw-r--r-- | test/type_inference/init.lua | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/test/diagnostics/common.lua b/test/diagnostics/common.lua index 72b2db6c..5f1d01c8 100644 --- a/test/diagnostics/common.lua +++ b/test/diagnostics/common.lua @@ -1494,3 +1494,10 @@ local x S = <!x!>() ]] + +TEST [[ +local x, y +local z = x and y + +print(z.y) +]] diff --git a/test/type_inference/init.lua b/test/type_inference/init.lua index 64cc43a8..a9ea81a7 100644 --- a/test/type_inference/init.lua +++ b/test/type_inference/init.lua @@ -1915,3 +1915,7 @@ local t local <?x?> = t[1] ]] + +TEST 'unknown' [[ +local <?x?> = y and z +]] |