summaryrefslogtreecommitdiffstats
path: root/tests/cpu-program
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2022-08-10 01:58:41 -0700
committerGitHub <noreply@github.com>2022-08-10 01:58:41 -0700
commit89083c4b50af8e48e70b25b63cc62aca21ab706c (patch)
tree38e9544cd218dbeea0a2f26f267ac16f275c0291 /tests/cpu-program
parent9df7fcb023bd5a22f35ecd609b7a50cc6634976c (diff)
Language server pointer type support + add `DLLImport` test (#2350)
* Language server pointer type support. + Natvis for AST. * Add completion suggestion for GUID. * Make executable test able to use slang-rt. * Fix gcc argument for rpath. * Fix DLLImport on linux. * Fix windows. * Fix. Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tests/cpu-program')
-rw-r--r--tests/cpu-program/class-com.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpu-program/class-com.slang b/tests/cpu-program/class-com.slang
index c8dfc7b14..3aec76818 100644
--- a/tests/cpu-program/class-com.slang
+++ b/tests/cpu-program/class-com.slang
@@ -35,6 +35,6 @@ IFoo createFooImported();
public __extern_cpp int main()
{
- var obj = createFoo();
+ var obj = createFooImported();
return obj.method();
} \ No newline at end of file