summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/variable-redeclaration.slang.expected
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2022-06-07 14:10:49 -0700
committerGitHub <noreply@github.com>2022-06-07 14:10:49 -0700
commit0c64995ea28febcc7d38e1519da8d93391ce2e7d (patch)
tree8696ab86b29caf80c3ebbd205c700e24b8c20bf3 /tests/diagnostics/variable-redeclaration.slang.expected
parent8c4a15c522861d2f30eacc9cd2b03ad793018639 (diff)
Major language server features. (#2264)
* Major language server features. * Include slangd in binary release. * Fix compiler issues. * Fix compiler error. * Completion resolve. * Various improvements. * Update diagnostic test expected output. * Bug fix for source locations. * Adjust diagnostic update frequency. * Update github actions to store artifacts. * Fix infinite parser loop. * Fix parser recovery. * Fix parser recovery. * Update test. * Fix test. * Disable IR gen for language server. * Allow commit characters in auto completion. * Fix lookup for invoke exprs. * More parser robustness fixes. * update solution file Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tests/diagnostics/variable-redeclaration.slang.expected')
-rw-r--r--tests/diagnostics/variable-redeclaration.slang.expected4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/diagnostics/variable-redeclaration.slang.expected b/tests/diagnostics/variable-redeclaration.slang.expected
index 03bed580b..d18e5fb2a 100644
--- a/tests/diagnostics/variable-redeclaration.slang.expected
+++ b/tests/diagnostics/variable-redeclaration.slang.expected
@@ -19,8 +19,8 @@ tests/diagnostics/variable-redeclaration.slang(20): note: see previous declarati
tests/diagnostics/variable-redeclaration.slang(53): error 39999: ambiguous reference to 'size'
return size;
^~~~
-tests/diagnostics/variable-redeclaration.slang(51): note 39999: candidate: size
-tests/diagnostics/variable-redeclaration.slang(50): note 39999: candidate: size
+tests/diagnostics/variable-redeclaration.slang(51): note 39999: candidate: float size
+tests/diagnostics/variable-redeclaration.slang(50): note 39999: candidate: int size
}
standard output = {
}