From 2b0964deaf94355eea91dff12d017525b49c3737 Mon Sep 17 00:00:00 2001 From: ruki Date: Fri, 20 Mar 2026 22:33:30 +0800 Subject: remove native_aot --- tests/projects/csharp/native_aot/src/app/main.cpp | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tests/projects/csharp/native_aot/src/app/main.cpp (limited to 'tests/projects/csharp/native_aot/src/app/main.cpp') diff --git a/tests/projects/csharp/native_aot/src/app/main.cpp b/tests/projects/csharp/native_aot/src/app/main.cpp deleted file mode 100644 index 070ad7de6..000000000 --- a/tests/projects/csharp/native_aot/src/app/main.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include - -extern "C" { - int cs_add(int a, int b); - int cs_multiply(int a, int b); -} - -int main() { - printf("cs_add(3,4)=%d\n", cs_add(3, 4)); - printf("cs_multiply(5,6)=%d\n", cs_multiply(5, 6)); - return 0; -} -- cgit v1.3.1